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's using Facebook API now.

I thought I want see places list.
*Request URL
https://graph.facebook.com/search?type=place&center=35.6589,139.701283&distance=500&access_token=token

This was successful but I'd like to add new spot to this places.
This is problem. I have no way now.

My image is this.

*My system post new spot to places with parameter of spot data.

parameter example:
name: test store,
category: Local business,
location:{
   street: test town 1-1-1,
   city: Sibuya-ku,
   state: Tokyo
   country: Japan,
   zip: 150-0001,
   latitude: 35.121313123,
   longitude: 139.123456,
}

*If this parameter is ok by Facebook, , The system of Facebook return spot_id.

Do facebook have a function like this?

share|improve this question

1 Answer

As you can see from your query, every place has a Facebook id, because every place that a user can check into is actually a Facebook page.

So what you want to do would require creating Facebook pages on-the-fly – and I don’t think that happening would be appreciated by Facebook, because we would end up with a lot of “dummy” pages that are used only once and will have no real activity and thereby now value to the FB userbase afterwards.

Depending on what you actually want to do with this “spot” info you like to create, maybe you could set that up yourself by using Open Graph objects instead, and have users taking actions on these objects of your’s.

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.