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'm quite new to building facebook apps but any how, is some one think they have time to gelp me that would be great.

So my purpose is to build an app where we translate your text in to other languages, so i simply have connected people that will translate the text, built a wordpress "app" which will post the content to a blog-post draft and categorize it by language. Connected this to facebook by iframe.

Now what i need is to figure out how to post a link on the users wall when we have translated their text and posted it on our wordpress wall.

From what i understand i need to be granted access to write/post on your wall. From there i need to figure out how the app should be able to post it on the users wall when it's upp an published.

Hope that you understand my question or rather questions otherwise, don't hesitate to ask for more details.

share|improve this question
Well i get that I need the offline_access the problem I'm having is after fetching you posted the text you need translated to us, how do i notify the "client" that we've translated his text by sending a link to his facebook wall? @Lix – Max Grundell Jan 25 '12 at 15:28
Possible duplicate: stackoverflow.com/questions/2072599/… – Bill the Lizard Jan 26 '12 at 13:24

closed as not a real question by Josh Caswell, AVD, Book Of Zeus, the Tin Man, Graviton Jan 27 '12 at 3:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

An application can only post on a users wall that has already authenticated that application. This means that only once a user has successfully installed your application you'll be able to post on his wall.


Solution 1

Durring the installation of your application you'll want to request the offline_access permission from your users - this will allow you to post to their walls even when they are not connected to your application (or to facebook...or to the internet...shudder). This could be used (as in your case) as a notification system.


Solution 2

Another alternative would be to use app generated notifications. These work in the same way as posting to the users wall in the way that the user still has have the application installed.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.