How to create LINK POST with API - facebook

do you know if its possible to create a square link post without ads manager? With some html code, java or api?
I've checked various forums, but I can't find anything

Related

Upload image from as3 to instagram/facebook

I'm planning to create a photo booth program using AS3. I'm searching for this questions but can't find any solution so i just want to clarify it here if it is possible or not.
My questions are:
1.It is possible to post an image from AS3 to Instagram using my account?
2.It is possible to post an image from AS3 to Facebook page?
Thank you.
Facebook - Yes,
https://code.google.com/p/facebook-actionscript-api/
http://www.adobe.com/devnet/games/articles/getting-started-with-facebooksdk-actionscript3.html
Instagram - Maybe.
I found This, which is a library for instagram to AS3 communication, but I am unsure on how well it handles.
You can test your code for Instagram's API here
I would suggest that you check the Instagram api console here:http://instagram.com/developer/api-console/
They are listing every available api calls,after getting what you need it is a matter of using a URLLoader with URLVariables that contains all the HTTP vars the console shows and of course with the access token.
All the API is Rest .

collect picture from comments in facebook page status

I currently need to collect pictures-comment (someone comment by pasting a picture) from facebook page group
I have done some research and find that
1.Support for this hasn't yet been added to the Graph API and as with many of the other messaging APIs, it's currently only avaialable for testing (i.e you must be a developer of the app to use it presently)
from
View attachments in threads
2.You have to use the old php SDK until graph supports attachments
from
Posting Attachment Facebook Graph API
could any one provide some codes to me?
I need to know
Are the two approaches really works?? If yes, then... If no, I guess i will need to write/find a crawler (but it again sounds difficult as facebook group page is dynamic web)
What should I do if I want to follow 1st approach?
Should I register as developer and set up an app and...? (I have no experience in setting up facebook app and would appreciate any useful step-by-step tutorial)
If I am going the 2nd approach (php SDK), are there are tutorial as I have no idea what should I do next.
I know java, c++ and little js but facebook apis are something really new to me.
Really appreciate any help.

Where can I find this LinkedIn Plugin?

Recently, I had a client send me a screenshot of what appeared to be a LinkedIn Plugin. I asked the client where they got it from, but they couldn't remember, but wanted me to replicate it on their new site... I've looked all over and couldn't seem to find anything exactly like this. I am not very well-versed when it comes to LinkedIn, so the answer may be right under my nose.
Would anyone out there know where I can find this?
http://i.stack.imgur.com/HCxUj.png
I've looked through http://developer.linkedin.com/plugins, but couldn't find anything that had 'Latest Discussions' or 'Most Popular'.
The screenshot you've attached looks like a custom API integration emulating the widget that is found in LinkedIn hosted groups on LinkedIn.com. There are no LinkedIn-supported plugins available that can provide this functionality at this time. From the forums, a post from a LinkedIn employee:
https://developer.linkedin.com/comment/12044#comment-12044
Agorava LinkedIn is an connector to LinkedIn for Agorava. And Agorava Socializer also supports LinkedIn beside other popular social networking services like Facebook or Twitter.

Actionscript 3 Facebook integration

I am developing a flash game and I want to integrate it with Facebook. It should be very simple integration. My app only need username and e-mail address. I searched the web not I still don't know how to do it. It seems to me very complicated.
All I want is to connect my app to Facebook through Actionscript SDK, with few simple functions.
Can someone help me with a code to do that...I'll be very thankful guys :-)
Well, it's a general question, but here are a few links that might help steer you in the right direction. The first link has the SWC library and some examples:
Facebook ActionScript API resources:
libraries and examples
API documentation (though fairly sparse)
Adobe page
On their page, Adobe links to a tutorial / walkthrough for building a mobile Facebook app that's pretty helpful, though it expands on a desktop-based article and references it regularly, so that can be a bit confusing, but it does get the job done.
Then you need to understand the Facebook Graph API - basically Facebook passes around objects that contain data pertaining to the user, their friends, etc (and of course, passing around this data is subject to the permissions your app has setup). Facebook provides an online tool (Facebook Graph API Explorer) that let's you explore these objects for your own account.
Pouring over this information, I got my first flash-based mobile app talking to Facebook in a few hours. There you go, ask a generic question, get a big swath of links to read that are only semi-related to your question. =D

Facebook UI documentation

I am trying to create a bookmarklet to process some Facebook data about my contacts, what will possibly require to load another profile pages and see who my friends are.
I am trying to know which urls should I query to get this information. And also how to interact with FB's UI libraries and/or elements.
Is there any documentation for this?
You probably are looking for Facebook JavaScript SDK.
Here is documentation on the FB.ui(): http://fbdevwiki.com/wiki/FB.ui
EDIT: it's updated by user contributions and lately it hasn't been changed much