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.

I am using facebook graph API to get the business detail by "type=page" , but for some business name show empty result

I have to use url

http://graph.facebook.com/search?q="Business Neme"&type=page

Then I get

{ "data": [

] }

please give me any solution to get full information of data using type=page

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

You should URL encode your query as Fluvio shown earlier.

http://graph.facebook.com/search?q=%22Business%20Name%22&type=page

or

http://graph.facebook.com/search?q="Business Name"&type=page

You should get the same result in both queries.

share|improve this answer

Use this, it returns results just fine:

http://graph.facebook.com/search?q=Business%20Name&type=page
share|improve this answer

I got why graph.facebook showing like this- If any business profile secure then it will show this type of results.

share|improve this answer

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.