-
-
Save virendersran01/ac2dbbb20151b7a3d32203dbfe236f29 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