Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I am trying to get places with long and lat from graph api with following code

https://graph.facebook.com/search?type=place&center="+latitude+","+longitude+"& distance=5000&access_token=.....

I am getting

Malformed access token error. What am I doing wrong?

Thanks for your helps

share|improve this question
Where are you getting your access_token? – Igy Jun 15 '12 at 14:00
I am getting it from sharedpreferences but I am using it to send a wall post, it is working perfectly. I am doing following code, but getting that error at my Logcat. facebook.setAccessToken(access_token); facebook.setAccessExpires(expires); String stringPlaces=facebook.request("https://graph.facebook.com/search?type=place&dist‌​ance=1000&center=37.76,-122.427&access_token="+access_token); Log.d("Places", stringPlaces); Please help – user1448565 Jun 15 '12 at 14:06
Show your Logcat error – Venky Jun 15 '12 at 14:17
Edited my code like this, facebook.request("graph.facebook.com/…); Now getting this {"id":"https:\/\/graph.facebook.com\/search","shares":9} – user1448565 Jun 15 '12 at 14:23

1 Answer

Based on your code, it appears that you're passing the access token twice?

It looks like you're initialising the Facebook object with an access token and also manually supplying it in the call to /search; many languages will treat duplicated parameters as an array, and won't parse it correctly.

{edit} you're also including the full URL of the request even though the SDK wraps this. it should proabbly be

facebook.request("/search?type=place&distance=1000&ce‌​nter=37.76,-122.427");
share|improve this answer
Getting this when I try following code Code facebook.request("https://graph.facebook.com/search?type=place&distance=1000&ce‌​nter=37.76,-122.427"); Error or smth :) {"id":"https:\/\/graph.facebook.com\/search","shares":9} – user1448565 Jun 15 '12 at 14:13
"error":{"message":"(#100) Distance parameter specified without location","type":"OAuthException","code":100}} now getting this – user1448565 Jun 15 '12 at 14:18
Are you sure that's the correct way to pass parameters in the android SDK? I don't use it, but many SDKs offer a way to pass an array of parameters instead of coding them into the request URL - check the 'center' parameter is being passed correctly – Igy Jun 15 '12 at 14:22
Yeah @Igy is correct you should not add your access token for places search query .. SO remove it and try.. +1 Nice answer.. – Venky Jun 15 '12 at 14:22
Tried this facebook.request("/search?type=place&distance=1000&ce‌​nter=37.76,-122.427"); But getting this time this error "error":{"message":"(#100) Distance parameter specified without location","type":"OAuthException","code":100}} – user1448565 Jun 15 '12 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.