Is it possible to share facebook wall on side a website? I would like to let each logged in user on my site to view his facebook wall on a certain area. IF the user is not logged in to facebook I want him to login , then this will allow him to view his wall. I don't need other that his wall to be displayed in my site.
How possible is that?
Is it possible to share facebook wall on side a website?
Yes.
IF the user is not logged in to facebook I want him to login , then this will allow him to view his wall. I don't need other that his wall to be displayed in my site.
Use Facebook Graph API to serve your purpose. Do this:
Add a Facebook login button to your website using Facebook Authentication refer Login subheading here
Make sure you ask for Advanced Permission from your user to allow your application to use his read_stream. This will allow your app to access logged-in user's posts that includes his wall posts. See details here
Parse the JSON object and display. You may want to have a long-poll or AJAX call ready to poll the new messages at regular intervals.
Related
I'm writing a facebook bot and want to enable the user to be able to post or share a URL, description and hashtag to their own wall, from within the messenger app.
Looking at messenger it appears as though the only native sharing options are to share to other messenger users or post an update to your day, not post to your facebook wall.
The only way I can think of doing this is having a standard FB share button hosted on the page I want them to share, but that would not be as fluid a user experience for the user, it would be lovely if there was a way within the messenger app that I could enable the user to share the URL with description and hashtag directly.
Is this possible? Thanks.
I am trying to make an iOS app integrated with the Facebook SDK that allows the user to post directly to a facebook group page and receive updates directly from the group page through the app, as an alternative to the facebook app.
I know that the Facebook dialog class in the latest SDK allows us to share a status directly to one's wall but I have yet to find a way to post it to a page other than the user's wall. Is there a way to gain access to a facebook group page and retrieve the posts from the page and also post directly to it?
Is it possible to post a comment on users facebook wall after submitting a button on my website?
On my web page users can review certain products and after they review them the press on ‘submit review’ button. I want to make the review report to be published on the user’s facebook feed.
Thanks in advance,
For a normal post, you can use the Feed dialog – this does not require that the user connect to your app first.
If you want to post via API in the background, then you have to have the user login to your app first.
If you do not want a normal post, then look into Open Graph actions: https://developers.facebook.com/docs/concepts/opengraph/
Is there anything I need to do to make posts users make on their wall via a custom ios application using it's own facebook app id, also appear on app's (facebook app it uses I mean) own facebook page?
I would expect this to appear automatically but it doesn't seem to be the case.
In order to read one's Facebook wall, you need the access token to authenticate reading. This will give you access to all non-public wall posts. From this, you can pass the newly posted content to your page through the feed action.
Reference: http://php-academy.blogspot.com/2011/04/how-to-post-from-facebook-app-to.html
Enjoy and good luck!
I have a web app that is connected to facebook graph, and thus have a corresponding facebook app. I'm looking for a means of communicating with the users of my app through their facebook feed.
So far I've asked the users to like the facebook application profile page for my app, so that when I post news on that wall, the users get it. This causes some confusion since the application profile page is a bit of a peripheral component in the webapp-facebook relationship.
Ideally I would be able to post on facebook either as the app, so that I reach all the registered users, or as the app url (www.myapp.url) so that users who like that url will get the posts. Alternatively somehow link the application profile page and the url/app, so that likers of the url or users of the app get the profile page posts.
Note that I'm not looking to post to users walls (just their feeds) and I'd prefer to post manually, using facebooks interface for posting.
The only ways you can publish into a user's news feed is to use a Facebook Page or a Facebook Open Graph Object. So, you did right by asking users to like your Facebook Application Page. If you've also got a webpage that people like, you can turn that webpage into an Open Graph object by adding an fb:app_id or fb:admins meta tag to the head of the page. Doing this grants you access to publish to your fans' news feeds, and you get access to a Facebook page-like interface (for administration purposes only). You can publish to the user's feed using this feed publisher (just like you would do if your Graph object were any other Facebook Page).
To get to the admin page you just have to make sure your Facebook User ID is in the fb:admins meta tag. Once it is, visit a like button social widget for that object, and you'll get the a link that lets you go to the admin page for the object.
I hope that's clear. You should probably give the Open Graph Protocol Documentation a good read.