Vasiliy Selivanov

  • RSS

FLASH – AlternativaPlatform

Posted on Tuesday, June 3rd, 2008

Alternativa Platform – solution for multiuser browser project. Browser 3D-engine.Cross-platform, made for Adobe Flash; best up-to-date performance. AlternativaGUI – Fast window-based interface for flash-projects.Multi-purpose, open for modification and expansion. – in progress AlternativaCore – Client-server solution for multiuser games and projects.Specific data workflow model, dynamic load distribution, easy scaling, own data transfer protocol, file versions [...]

continue reading

Google Android

Posted on Thursday, September 25th, 2008

from http://www.joyoftech.com Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Zend Studio for Eclipse V6.1

Posted on Thursday, September 25th, 2008

  Some new features and main FIXED BUG with "Building workspace"!   download http://www.zend.com/en/products/studio/downloads Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Facebook Fb.UI and “An error occurred. Please try again later.”

Posted on Monday, June 13th, 2011

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.

Posted in: facebook.

  • cettox

    thank you very much, that simple trick solved my problems dude