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.

Okay, I have never done the facebook app thing before, but I have been researching it extensively. facebook developer pages are a train wreck of information. I don't necessarily need code, just some resources, theories, guidance or ideas about how to solve this particular challenge (and if it is even possible to do on facebook). I don't use personally use facebook apps, and so I am kinda retarded about what can / can't be done with them. Many of the articles/videos are outdated and I don't know if they still apply because facebook developer interface has changed since.

I have a very simple website (php, javascript, mysql) with one button. On page load, it loads text for todays date into a hidden div tag, and there a button that you press that audibly reads that text (text to speech) via an external speech engine link.

I want to implement this in a facebook app where folks can subscribe and get the new text each day that is read out loud by pressing a button in their main feed page, similar to some apps that embed a video as a daily feed, where the video can be viewed on the users facebook feed. I have no idea where to start implementing this kind of functionality within facebook.

I just want the button, a hidden div containing the daily text, the title of the website, and when the button is pressed, EITHER it dynamically reads the text through the app via the external TTS engine, OR plays an mp3 of the text (I am able to save an mp3 of the text). I would prefer to NOT do the mp3 thing if possible because I have random intros and endings that get loaded from the db before and after the daily text.

I figured out to embed my webpage into the facebook canvass, but that's not really what I am looking to do. I would prefer instead to create the small app that shows up in the users feed. I also am unclear about how the daily feed is implemented, In other words, does facebook load the app on the user's feed daily, or is this something that has to be programmed by the app developer? Can you embed PHP and javascript in these type of user feed apps?

Any guidance or further resources on any of this would be appreciated

share|improve this question

closed as not a real question by Igy, prolink007, j0k, Bill the Lizard Apr 2 at 13:18

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

This is how i would go about it, I'm not sure if it's fully implement your desired result. What you need is basically a custom video player:

  1. Create a flash app, that would serve as your app interface, it will show whatever text you want, plays the audio, etc... .

  2. Create a canvas app that will feature the "subscribe" button, and previews and such.

  3. Upon clicking the subscribe button you prompts her for installing the app and requesting the pubish_stream extended permission.

  4. Once the user installed your app and granted the permission, you get a long living access token and store it in the db with the user's id.

  5. Now you can use the graph api or JS SDK with the feed dialog to create posts. The trick is to tailor the post object (the fields you provide in the feed dialog) to include the source field that is a link to your flash app, the type set to "video" and a picture that will make the user want to click it. The user posts the to her feed, this is generally seen by her friends not herself (the home feed seldom shows posts that user herself made).

  6. The post will go to the user's friends home page feed, and to the profile page of the user (not the same as the user's home page). For the most part, these posts all go along with the other posts users generating and rapidly sunk to the bottom of the friends home page (depending on user's friend activity) so its not feasible for anything that needs to stay in there long.

  7. The posted flash will be activated once the users click on the static image of the post, then you can use flash app to call back to your backend for text,audio,whatever you need.

  8. With the saved token and publish_stream permission, you will be able to send new messages from cron without the user with the graph api as long as the token is valid (they can go invalid for a number of reasons).

However

I'm not sure if it's really a good idea. The users doesn't get to participate what content the app will generate in their name. If you goal is to create a "daily dirty harry quotes" type of app, that would push content out daily i personally would recommend creating a facebook page and post the content there. The users want to see your content every day will like the page, and as long as they interact with the content it's generating (likeing/commenting the posts) they will see in their home feed your content.

share|improve this answer
Thanks for the information! The video option with the image over my audio might be a good direction to go. I found some more good "intro" type information about the facebook platform here (videos) in case someone might find it useful: pluralsight-training.net/microsoft/Courses/… . I created a facebook page (I guess its called a canvas page) that houses an exact copy (via URL) of my website that I made. I think I just need to do a little more research on how facebook works. Thanks again for your help! – Rich Ayers Jul 24 '12 at 21:26

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