optns https://w1.nandbox.net/get-user
Use this method to get a profile for a user. On success, the user is returned.
Field | Type | Required | Description |
---|---|---|---|
method | String | Yes | "getUser" |
user_id | String | Yes | Unique identifier for this user or bot. |
Response
Use this method to get a profile for a user. On success, the user is returned.
Field | Type | Required | Description |
---|---|---|---|
method | String | Yes | "getUser" |
user_id | String | Yes | Unique identifier for this user or bot. |
xxxxxxxxxx
â
// The object will be received in the onReceive callback.
â
else if(text.equals("getUser")){
api.getUser(incomingMsg.getFrom().getId());
â
}
â