i want to facebook feed development but feed ... customize? - facebook

I am currently working under a facebook javascript sdk.
but i am limit => Fixed frame (shape, position)
Javascript sdk, as html or other method I want to create a facebook feed system.
Thank you tell us how or related links.
for example
Except facebook api that provides access to feeds from Facebook and the Facebook system Is there a way to raise the feed in the form of message I want?

Here is a link on Facebook Controlling What You See in News Feed providing information about that how to change feed. Follow the link and design customize feed.

Built to the conclusion that there is no way except the Facebook api.

Related

How to share feed into the Facebook using GraphAPI?

I am working on Facebook app and wanted to add Share functionality so how I can do share functionality using Facebook graph API?
By the poor way, you can use the Like Button to the desired URL, but with the label "Recomend".
The better way is to develop the application with some Authorization to post inside the user's feed. By this way, you can use the Graph API to post inside user's feed.
If both ways are too time-expensive for you, try to use ShareThis.

Streaming Facebook Pages Wall (not just the pages posts)

I have looked on 100 forums looking for a simple answer for how to stream every post on a Facebook page's wall (not using the like box for just the pages posts, but everyone's posts). I am the admin of the page and I am already using the like box for my posts so I understand that, however the developer pages of Facebook are too confusing for such a simple task. I will be inserting the stream into an HTML page which will be hosted on www.1and1.com so it can handle most, if not all code.
I know it is a lot to ask but is there evem someplace online that will offer plain step-by-step instructions for my specific needs?
If the social plugins they make available aren't sufficient, you could just pull in the feed with the Facebook graph api using the javascript sdk (easiest) or there is probably an SDK for whatever programming language you know. For example, you can see a list of posts on the coca cola page using the Facebook graph explorer:
https://developers.facebook.com/tools/explorer/?method=GET&path=cocacola%2Ffeed
The /page/feed method needs an access token, but you can use the graph explorer to get an offline_access token that you can use to pull the data in. This may eliminate javascript sdk usage though unless you want to first prompt users to authenticate your application. But otherwise you would just parse the json feed that is returned in the url indicated in the graph explorer (and add your access_token to the end of the url).
Here is a good PHP tutorial on how to display a groups feed on a web page. It would be just as easy to display the posts from a page (since you are the admin)
Just replace the group ID with the page ID. Here is a link to the feed for the Facebook Platform feed graph api results. More info on FB Pages here.

Pushing Blog Post to Twitter & Facebook (with Customization)

I'm curious if there is a module or available starting point to solve for the following requirement.
When an administrator writes and publishes a blog post I want the ability to push that post automatically (and optionally) to both Facebook and Twitter with one caveat
I want to be able to customize the Facebook and Twitter post to have custom content and allow for the unique attributes of each channel. Ie have a thumbnail image for the Facebook post, change the title of the Twitter post to include #hashtags and such.
Does anyone know of an existing module or customization that would allow for this or provide a head start on building out this customization?
Well there's the twitter module: http://drupal.org/project/twitter and also the 'Simple Facebook Wall Post': http://drupal.org/project/simple_fbwall. I haven't used either of these myself yet.
Try these for automatic publishing. Make a rule for sending emails.
https://drupal.org/project/facebook_rules
https://drupal.org/project/facebook_page_rules
This module gives a checkbox to tweet automatically.
https://drupal.org/project/twitter

Simple Facebook Integration

I want to integrate a friends website (photographer) with Facebook. I've been trying to find the answer in the Facebook Developers guide, but it doesn't seem clear to me.
What would I need if:
I want to have a like button per photo album he has
I want to publish his news that he enters in my cms to his facebook wall
Do I need an application? Or can I accomplish this with plugins?
Thanks in advance.
the like button can just be added by inserting a code snipped
facebook will take care of the rest.
if you however want to do more with your liked pages like send updates and have statistics, you need to register an app and supply the app id as meta tag in your website. the open graph notation is used.
to publish news post you can obtain a permament token and publish using the graph api, but there are also alternative and probably easier methods
You should keep it simple and be able to accomplish these with just plugins... FB's documentation is quite rich:
In here it explains how to add the like button:
http://developers.facebook.com/docs/guides/web
http://developers.facebook.com/docs/reference/plugins/like
And this to post to his wall:
http://developers.facebook.com/docs/reference/plugins/live-stream

How can I display user comments for a Facebook Event or Group on my website?

I'd like to integrate user comments for a Facebook or Group on my website. It's simple enough to insert a Facebook Live Stream widget into a site, but it only shows comments that other users post via the widget on my site.
I'm using ASP.NET MVC, but would prefer to use HTML/Javascript integration over server-side integration if possible.
Your requested Feature is currently not possible.
I guess there will be something similar possible but only for Pages and Profiles. (See Comments API) For current use i would try to stick to an Page (Public Profile) and use the Fan Box
Try the wallflux of your group, http://wallflux.com/feed/115227675156013, does that serve the need?
I don't think Facebook permits scraping their content back to your site.