Archive for the ‘facebook’ Category
Facebook Fb.UI and “An error occurred. Please try again later.”
If you tried to make feed posting via javascript
1
2
3
4
5
6
7 FB.ui({
method: 'feed',
name: 'Title',
link: 'http://example.com',
picture: 'http://example.com/image.jpg',
description: 'description'
});
but have error message “An error occurred. Please try again later.”.
To solve this just add your application id as app_id parameter
1
2
3
4
5
6
7
8 FB.ui({
method: 'feed',
name: 'Title',
link: 'http://example.com',
picture: 'http://example.com/image.jpg',
description: 'description',
app_id: YOUR_APPLICATION_ID
});
I hope it is help somebody. Write you comments.
How to make (sort) gallery/post votings (likes) with Facebook
I will tell you have to make sorting of photos/posts/links via facebook.
For example you have photo gallery where users could “vote” (like) for each photo. And you need to make sorting of photos by popularity with Facebook.
So you have, for example, 10 photos with urls:
http://yoursite.com/photo/1,
http://yoursite.com/photo/2,
..,
http://yoursite.com/photo/10
what users could “like”. And you have pagination of 3 photos per page. So lets start.
Facebook pages will automatically be upgraded
Facebook pages are getting an updated layout and several new features to help you engage with your fans. Preview your pages and you’ll be given the option to upgrade early. All pages will automatically be upgraded on March 10.
this link http://www.facebook.com/pages/status/ help you upgrade it manualy
