How one can post to the Event wall using Graph API with Markdown formatting? It is not clear from API docs.
I am tried to use POST /v2.6/EVENT_ID/feed query with Markdown in message field but end up with raw text in the result.
Related
I have a question about filtering on the Facebook graph API.
Is it a way to filter the results with the Facebook Graph API for /tags endpoint?
For example, to filter on media_type or with the timestamp fields.
I tried to do this, but it does not work:
GET {user-id}/tags?fields=media_type,id&filtering=[{field:'media_type',operator:"EQUAL",value:"IMAGE"}]
Thanks a lot for your help
I am using Facebook's Graph API to pull Events into a website. There is a category field available in the API request (see https://developers.facebook.com/docs/graph-api/reference/v2.11/event) but for every event I have queried it has been blank. I can't even see a way for users to even add a category when creating an event so it's not surprising they're blank.
Facebook does have a keywords field when you create an event. Is there a way to return this in the Graph API request? I can't find anything in the documentation about it.
Since FQL is deprecated from 2.1 onwards.Is there any way to get all the posts that a page is tagged in using Graph API.
tried {page_id}/tagged but it shows only the page's posts not the posts that a page was tagged.
I want to query the posts using graph API by a user on their own wall that tags the page.is there any way to do that?
isn't this a functionality of the Public Feed API which Accessing it is restricted to a limited set of media publishers and usage requires prior approval by Facebook. Applications to the API are not open at this time.
I would like to be able to show short news messages to users of my app. I am thinking the nicest way to do this would be to add a hashtag (like #appnews) to my Twitter updates that I want shown in-app; my app will make this happen by scanning my Twitter stream at startup and surfacing updates with that hashtag. This seems super-simple, and I'd like to know if there's some way to do this via built-in (HTTP?) calls to my Twitter page, rather than incorporating a whole framework like MGTwitterEngine. The user will not be logging in or posting Twitter updates at any point.
Thanks!
You can retrieve any user's public tweets in XML format by retrieving the following URL:
http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=DWRoelands
(This example will display my tweets). Once you've got the list of tweets, you can parse through the XML document in whatever way is easiest for you.
Rather than tagging posts with a hash tag, I would recommend simply starting a new Twitter account that is solely for the news items you described.
I am displaying wall using graph api. I have queries about below problems.
I would like to give "Like" functionality for each news feed post via graph API.
W would like to give "Comment" functionality for each news feed post via graph API.
You can do this with Graph Api
.Check Documentation.There it says
You can comment on or like any object that has a /comments or /likes connection by posting to https://graph.facebook.com/OBJECT_ID/comments and https://graph.facebook.com/OBJECT_ID/likes, respectively:
More details here.