I am trying to figure out the best possible way for me to debug/verify facebook graph URL's (I am trying to specify permissions in the URL for oauth) e.g.:
https://graph.facebook.com/me?fields=name,picture,email,likes,interests,gender,id,locale,friends,first_name,last_name,link,user_about_me,friends_about_me&access_token=%s
However, I keep receiving an error message mentioning socialauth did not work correctly (I am using scribe/Java in debug mode). I could not locate other error messages. I am able to run oauth correctly with scribe using a smaller URL & I am not sure whether the issue is with the permissions I am asking for or the string I am creating. Any insights on how to troubleshoot or fix the issue will be appreciated. For any downvoters, seek a life!
Edit: I am using scribe-java for oauth as mentioned in the post. I tried the URL above (as I mentioned in the post) but it gave me an exception in scribe (I used debug mode for scribe but I did not see any error messages besides "social auth did not work correctly"). When I try the same URL but without "user_about_me,friends_about_me" in the URL, I get a response from Facebook with a successful oauth. Are the values "user_about_me,friends_about_me" invalid for the oauth URL or perhaps I need to dig deeper into how scribe is communicating this to FB? I would not be surprised if its something I am doing which is incorrect - I just need to understand how best to troubleshoot this.