Facebook query info when not logged in - facebook

Ok so i have gotten to the point where for my admins I can log them in, post to their fan pages, post comments and everything works well.
I have done this with the javascript api.
Now I am t the point where I want pull things like the feed from their fan page wall to display to site viewers. Obviously I dont want the average site viewer to have to log in to see the feed from the fan page. I just want to display it on my web page.
Is this possible to do with no authentication?
thanks

It is most definitely possible. Take a look at at this example.

Related

Providing users with a way to detag their Facebook photos

I run a social membership club and my website users can log into my site with each having their own profile page.
On each of my user's profile pages, I want to display a list of photos which have been tagged with that user on Facebook. I know this part is possible.
The bit I am struggling with is giving each of my users the ability to 'untag' themselves in each photo of them that is displayed in the list. The 'untagging' should happen directly from my site. Is this possible and how could I go about doing this?
Hope someone can help/has ideas?
Unfortunately, there's no facbeook API that allows removal of photo tags at this time of writing.
Its not documented and I haven't tested this but I'd chance issuing a DELTE request to
/PHOTO_ID/tags/USER_ID
Worth a shot through the graph explorer anyway.

Get Likes on fb fan page but referrals to website

Ideally this is what I would want:
I have a fb fan page with around 2000 likes. I also have a fb app by
which I can run social plugins on my website. I put up a like button
using the following code on my website: {fb:like
href="http://facebook.com/traveltriangle"}
I want to show Like button on my website such that if user clicks on
it, my fan page's 'like' increases. However I also want that for the
post that goes on user's timeline, it links to my website and not to my fan page.
How do I achieve this?
I am also fine if I change href in the fb:like code to point it to my website. However then the referral links are good, but I can not use those likes to post my users later.
I don't think you can use merge tam. Fb Fan page is one thing and Fb App is other thing. FB App helps you get user data from what I know from their database while Fan page helps you promote your business.
Why do you need to merge them?

Is this possible to require website visitor to fan a facebook page to access content on the website?

I was wonder if this would be possible and how to do it. I have a personal website. I wanted to have it so that in order for the visitor to gain access to a specific page,the website checks to see if that visitor is a fan of our page on facebook. If they are not, they must become one to advance to the page content on my website. I thought perhaps there is a code that would do this? Maybe some kind of token/cookie combo? Any help would be great. Iv been searching for a solution to this. The page on my personal site gets a lot of traffic so I want to require all visitors to that page to become a facebook fan and the site verifies this before letting them into the page.
Outside of Facebook you can only check if a user likes your page if you have the user login to your site first.
So you’d need to set up an app, have the user login, ask for their permission to read their likes, read the info if they like your particular page – and then either let them see the content, or present them with a like button.
How it’s done in detail is all in the docs – so please have a look around there if you think it’s worth the cost.

Facebook + WordPress

being surfing a while on a topic.
site : http://www.udaipurtimes.com
The problem is, I have a WordPress site and I've used FB Share and FB Like plugins (free) for displaying on each posts. I also have a fan page of the website where I regularly update about every post I do on website. But for example if someone like that post on FB fanpage, then it dosen't reflect on to my website's Fb Like counter.
Example, If one post receives 10 likes on FB fanpage, then that same post on my website just have 2 likes. Basically, I want to sync these like between my website's post and the post that I link then to Fb fanpage.
Do revert back to this. Anything from your end would be helpful. Thanks in Advance.
We need to designate that the content being liked on FB and the content being liked on your WP Site are not one in the same. If it is liked on FB, the count will not show up on your page(and vise versa).
There's not a lot you can do. This is very much a part of how Facebook works.
However, it's a good idea to keep your content organized with Open Graph. Hope this helps.
http://ogp.me/
http://developers.facebook.com/docs/opengraph/

Facebook fan page interaction

I've seen a lot of questions on here asking how to publish to a Facebook fan page, but not how to publish from a Facebook fan page to an external site.
I'm admin of a fan page and would like to make updates for my audience from Facebook. These updates I'd like to appear on my website as well. Does anybody know of a way to do this?
You can pull feed messages in json format like so:
http://graph.facebook.com/17227611925/feed
Substitute 17227611925 with the id of your page.
You'd have to find/write a bit of code to do this. Do you already have some sort of server-side programming environment set up?