post https://api.particle.network/server/rpc
📁 Understanding getUserInfoByIdentity
getUserInfoByIdentity
-
getUserInfo
retrieves a JSON object containing various data points relating to a registered user (a user that has already undergone social login), such as their name, UUID, token, email, and so on. The population of specific data points (such asfacebookId
,googleId
, etc.) will be dependent upon their primary associated social account.` It takes:-
identityProvider
- string. now only supportjwt
-
identityProviderId
- string.
-
Authorization use project server key
Query example
const axios = require("axios");
(async () => {
const response = await axios.post(
"https://api.particle.network/server/rpc",
{
jsonrpc: "2.0",
id: 0,
method: "getUserInfo",
params: ["jwt", "JWT user id"],
},
{
auth: {
username: "Your Project Id",
password: "Your Project Server Key",
},
}
);
console.log(response.data);
})();