[Solved] Facebook app that automatically writes on fans wall, when some fan have birthday? [closed]

Luckily, this is not possible, as it would be pure spam. You would need to authorize every single User with the App, request the publish_actions and user_birthday permissions and store an Extended User Token (that is valid for 60 days). You will never get publish_actions approved by Facebook in their review process, because it´s not … Read more

[Solved] How we get user facebook album pictures, This api is not working [closed]

Try this: FB.api(“/839506469483059/photos”, … Put a console.log(response) in the callback to see any error or data. You will get an array of pictures, so “response.picture” is definitely wrong. The ID does not seem to be public, i assume it´s the album of a user profile. In that case, you need to authorize that user with … Read more