Created
July 25, 2019 10:05
-
-
Save GitEliteNovice/09d684ae67c8599363577fd1ee13324b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void sendGetRequestForEmail(String urlString, String accessToken) throws Exception { | |
URL url = new URL(urlString); | |
HttpsURLConnection con = (HttpsURLConnection) url.openConnection(); | |
con.setRequestMethod("GET"); | |
con.setRequestProperty("Authorization", "Bearer " + accessToken); | |
con.setRequestProperty("cache-control", "no-cache"); | |
con.setRequestProperty("X-Restli-Protocol-Version", "2.0.0"); | |
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream())); | |
StringBuilder jsonString = new StringBuilder(); | |
String line; | |
while ((line = br.readLine()) != null) { | |
jsonString.append(line); | |
} | |
JSONObject jsonObject = new JSONObject(jsonString.toString()); | |
linkedInUserEmailAddress = jsonObject.getJSONArray("elements").getJSONObject(0).getJSONObject("handle~").getString("emailAddress"); | |
Log.d("email json object", jsonObject.toString()); | |
sendRequestToServerForLinkwedInIntegration(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment