privatevoidcallback_attemptLogin(boolsuccessConnection,stringresponse){if(successConnection){//Connection was OK, parse the response to JSON object (JObject)JObjectjsonObject=JObject.Parse(response);if(jsonObject.GetValue("status").ToString()=="success"){//If login is success, save the tokenthis.apiConnector.setToken(jsonObject.GetValue("token").ToString());}}