Actions link not supported by Graph API? - facebook

I have a native application which uses Facebook through Graph API and I'm trying to add a custom action link to a wall post.
For example:
https://graph.facebook.com/me/feed?
message=Wpis&actions[{"name":"Look","link":"http://google.com"}]
The message is posted on the wall but the action link is not shown. (It also doen't work from Graph API Explorer).
I found in some posts that action link isn't supported by Graph API, only by old REST API. Can you confirm that info? Or maybe you could redirect me to the page where there i can find some info about lacking features in the Graph API.

You forgot a =
/me/feed?message=Wpis&actions=[{"name":"Look","link":"http://google.com"}]
^

Related

Hidden comment retrieving from plugin facebookcomment using API Graph facebook

There is facebook Comments Plugin in one page of our client. I get all comments through fb.subcribe events and store them in our database.
Now We have to hide those comments, I have to go to the developers tool to make moderation because I am only the administrator that the client has added.
My question is:
Is there any way to use API facebook Graph to hide the comment? Does someone already make this action by API graph facebook.
Thanks a lot

Has the Facebook graph search API been removed in Graph API version 2.0?

I can use the Facebook Graph API successfully (within my iOS app) for several calls but I'm trying to use it for searching.
I implemented the url after googling and getting many hits, i.e. Does facebook have a public search API yet?.
I can use the search API from a browser and get results, however it doesn't work from within my app.
So I had a look at the Facebook graph API reference https://developers.facebook.com/docs/graph-api/reference/v2.0
and search isn't listed there. Has it therefore been removed?
Be aware that Facebook has just taken down public post search in Graph API v2.0 so you won't be available to do that anymore.
Check https://developers.facebook.com/docs/apps/upgrading under section Graph API "Public post search is no longer available. (/search?type=post&q=foobar)"

post to friends feed facebook without feed dialog

I'm creating an app using Facebook API in cascades BB 10. I have done the login part in C++ using qnetwork manager. I was able to post to my wall using HTTP post with graph API. I want to post to my friends wall. After searching, I found that it is not possible using graph API but only with feed dialog. As I'm not using any SDK, is there any other option for posting to friends wall?
No. But some other options (since your req could be batch post) you may like, such as:
You can post feed/photo on the user's wall and tag the friend/s in that post using mention tagging or place parameter
Read more about tagging on the developers site here: Tagging

Facebook Graph API (Tell people about my app)

Is it possible using the Graph API to tell the my friends about the an app?
I looked through the documentation and I can't find any, maybe I missed it. I can see I can post onmy wall, but nothing regarding sharing a link/app. Thanks
Sharing a link is a part of the Graph API. You can add a lot of variables to a Post request. See the official documentation here:
http://developers.facebook.com/docs/reference/api/post/
As an example, I used the message, link, name, caption, description, and icon properties with the graph API to create this dialog (using the Facebook iOS SDK).

How to like facebook community in iphone using graph API

I am developing a Facebook application on iPhone which displays feed from a community. I can access wall of the community using the Graph API using the link http://graph.developer.com/CommunityID/feed?
and also post comment & like for particular wall post using graph POST api http://graph.developer.com/CommunityID_WallpostID/comments? & http://graph.developer.com/CommunityID_WallpostID/likes?
Now my problem is to "Like" the community first, which I was not able to find in Facebook's documentation
Has anyone successfully implemented this using graph API or other API?
Thanks in Advance,
As of now Facebook doesn't allow you to like anything apart form posts through Graph API. We actually had a work around using webview to display Facebook Like button.
You can refer to this great post by Ray Wenderlich at http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app
and customize your like button at http://developers.facebook.com/docs/reference/plugins/like-box
Hope it helps.