Soundcloud API - Is the search working on comments body? - soundcloud

I was wondering if it's possible to use SoundCloud APIs to search in comments body.
the following request doesn't seems to return correct results:
http://api.soundcloud.com/comments?client_id=<myclientid>&q=marco
Does anyone know how to do it?
Thank you

No, that's not an option of the API.

Related

Facebook Graph API - Getting Comments

I'm trying to use Facebook graph API to get all the comments (mine and others) on my Facebook posts.
Currently I'm testing the api using Graph API Explorer & so far I'm getting only my comments.
I want to know did they change their policy or is there a way to get all the comments?
P.S: I didn't write any code so far.
But I followed the link:
https://developers.facebook.com/docs/graph-api/get-started
to use the graph API explorer and this is what I'm getting:
the image
In the "Tools" you will find the tool. And as you can see you will get the list of the comments. I'm just showing one of my comments (testingggg) as an example.
Unfortunately, the API doesn't give me the others' comments.
Am I missing something?
Thank you.
according to the document this is the way to get all the comment docs

Facebook Graph APi - Retrieve all comment where i'm mentioned

Would like to know if there is a smart way to retrieve all comment where a page has been mentioned (#mypage)?. Up to now I call /me/notifications and parse all type of notifications, there is something I'm missing?
Thank you
As pointed to #deesarus, there is no a dedicated API to extract comments where a page is tagged. Only way is to parse /page/notification.

Facebook hashtag feed

Is there any? I've searched and I didn't find anything about it. I need feed or posts IDs of specific #hashtag, iframe with this would also works.
Anyone, anything?
Right now there is only the keyword search, hashtags are not supported (yet): https://developers.facebook.com/docs/reference/api/search/
There will be the Keyword Insights API (https://developers.facebook.com/docs/keyword_insights/ ), but it's currently not publicly available. So, the only option is as #luschn described.
No, it's finally deprecated.
Public Post search is no longer available.
(/search?type=post&q=foobar)
LINK
OK, I've found solution, someone has created http://www.facebook-hashtag.com service, even it is limited to 2 minutes of searching.

Facebook Graph Api to read recommendations

While I can access several data using fbgraph api, I couldn't find way to read the "recommendations" data.
For example: For the facebook page www.facebook.com/cozycaterers , its recommendation content appearing on right side below cover photo.
Could someone please help me.
Thanks in advance.
Don't think this is currently possible.
I have checked the Docs for FQL and Graph API with no luck ...
Hopefully facebook will allow access sooner or later
I tried this query with the FQL Explorer:
SELECT review_id, rating, message, reviewer_id FROM review where reviewee_id='492378670299'
It returned results, but not as many as I expected.
If anyone has a better answer, I'd be happy to know...

Facebook publish to feed

Recently I'm working with the Graph API of facebook and I got the authentication ready, though publishing to my own feed gives me a hard time..
I'm trying to find the correct URL to do this, because I am using MonoTouch and the only way to publish is using a webrequest. I tried to check what the API said but it wasn't quite clear, I'm trying the following url:
https://graph.facebook.com/myusername/feed?access_token=mytoken?message=testmessage
What am I doing wrong ?
Thanks in advance!
You are missing the parameter method with the value post.
Try this:
https://graph.facebook.com/myusername/feed?method=post&access_token=mytoken&message=testmessage