I am using graph api and i am login through facebook in my app My login link is as
var authorize_url = "https://graph.facebook.com/oauth/authorize?";
authorize_url += "client_id=" + client_id;
authorize_url += "&redirect_uri=" + redirect_uri;
authorize_url += "&display="+ ( display ? display : "touch" );
authorize_url += "&scope=user_about_me,publish_stream,manage_pages,user_interests,friends_interests,user_birthday,friends_birthday,user_education_history,friends_education_history";
authorize_url += "&type=user_agent";
there is no problem here,all works well.
But problem is,it returns me "APP ACCESS TOKEN" not "USER ACCESS TOKEN". all i need is user access token to fetch mutual friends list b/w two users. i surf a lot and tried all stuff but no luck yet. can any one help me out ?