java - get the profile url of an authenticated user instagram -


i have developed authentication app using instagram , below code snippet of attempting profile url of authenticated user

if (requestcode == keys.login_req) {                 // make sure request successful                 if (resultcode == result_ok) {                     bundle bundle = data.getextras();                     instausername.settext("fullname : "+bundle.getstring(instalogin.fullname)+"\n"+                             "username : "+bundle.getstring(instalogin.username)+"\n"+                             "id : "+bundle.getstring(instalogin.id)+"\n"+                             "picture : "+bundle.getstring(instalogin.profile_pic)+"\n"+                             "access_token : "+bundle.getstring(instalogin.access_token)+"\n"+                             "bıo : "+bundle.getstring(instalogin.bio)+"\n");                 }             } 

please how can profile url of authenticated user above snippets

you might need make api call providing access-token described here.


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -