if (!isVerify) {
throw new SocialAuthException(
"Please call verifyResponse function first to get Access Token");
}
if (msg == null || msg.trim().length() == 0) {
throw new ServerDataException("Status cannot be blank");
}
Map<String, String> headerParam = new HashMap<String, String>();
headerParam.put("Authorization", "Bearer " + accessGrant.getKey());
headerParam.put("Content-Type", "application/json");