public static JSONObject getPersistentCode(String tmp_auth_code, String accessToken) {
String url = Env.OAPI_HOST + "/sns/get_persistent_code?access_token=" + accessToken;
JSONObject json = new JSONObject();
json.put("tmp_auth_code", tmp_auth_code);
JSONObject reponseJson = null;
try {
reponseJson = HttpHelper.httpPost(url, json);
} catch (OApiException e) {
e.printStackTrace();
}
return reponseJson;
}