tags:

views:

30

answers:

1

I was wondering what are Facebook limitations. My client wants such project:

3. App allows user to post photo on their facebook page and share it with their friends with a message.

Can Facebook API allow all these steps to be accomplished?

+1  A: 

Yes, API provides it via REST:

http://developers.facebook.com/docs/reference/rest/photos.upload - to upload a photo http://developers.facebook.com/docs/reference/rest/stream.publish - to publish it on the user's wall

Or the same with Graph:

http://developers.facebook.com/docs/reference/api/photo
http://developers.facebook.com/docs/reference/api/post

zerkms
Can I use IFRAME integration or XFBML is sufficient?
Guy
Sure, you are free to choose any canvas type you want.
zerkms