good_evening
good_evening

Reputation: 21759

I want that my game could be played directly in Facebook

I have text-based game and I want that it could be played in Facebook directly. I think I am able to implement it, but where to start? Thank you very much.

Upvotes: 0

Views: 74

Answers (2)

Gats
Gats

Reputation: 3462

Facebook has an API that uses json. You should probably prototype your game as a website first, then hook it into facebook when you're happy with how it works.

Then just hook it into the Graph API http://developers.facebook.com/docs/reference/api/

Upvotes: 0

Saurav
Saurav

Reputation: 3136

Checkout the PHP SDK here to get started. It comes with an example app. https://github.com/facebook/php-sdk/

You should also read up on the API docs: http://developers.facebook.com/docs/guides/canvas/

Upvotes: 1

Related Questions