Soundcloud API - Playback_count is wrong - soundcloud

Hey SoundCloud guys the value of all playback_counts delivered by your API is wrong over 1 month now. Please fix it. We can't countinue working with this wrong stats...

Related

Pulling a single facebook comment by id fails OAuthException

There seems to be something wrong with the facebook graph api right now. Even using API explorer tool generates the error. Can anyone pass a regular request for a single comment without throwing this exception?
https://graph.facebook.com/v2.6/|comment-id|
I have been facing this problem for close to 24 hours now. I could not read a comment by the Facebook API anymore. It has been working prior to this.
Pulling comment - https://graph.facebook.com/v2.6/[comment-id]?access_token=[access-token]

Facebook Graph API - Pin to top a post

I tried to figure out how I can pin a post to top with Graph API. Some people said to use property timeline_visibility set to starred but it's not pin the post at the top.
Somebody know how?
Thx
No, it is not possible now. This is even not part of UI now. check this out,
https://www.facebook.com/help/community/question/?id=10204102381228155
It's actually a bug at present that Facebook claims to be working on but it's been up since March. I recommend subscribing to the bug so you know when they've fixed it.
https://developers.facebook.com/support/bugs/657672685028365/
Once it's fixed it should be able to be done by passing is_pinned with the post data.

GraphAPIError: (#500) Message contains banned content

I have encountered a GraphAPIError: (#500) Message contains banned content problem today when I use GRAPH API (via python) to POST URLs (even post http://www.google.com failed, but if I post it directly through my facebook page, it works)as comments. It used to working correctly.
Does anyone encounter the same problem or know how to solve that?
Thank you.
For anyone else having this issue - seems that if an FB user who is NOT validated with FB (hasn't given FB their cell phone etc) comments on some posts, they can get a 500 error. Once validated the error doesn't happen

Getting limited data from a page which has a Facebook ID

I just posted a question before (here) and it is working now. But with that question answered, another one came up.
This URL below I have only my shares
https://graph.facebook.com/?ids=http://marceloduende.com/facebook_test/index.html
And on this URL, I have all this data...
https://graph.facebook.com/?ids=http://www.imdb.com/title/tt2380247/#lb-vi2114495513
Anyone has any advice on how do I get all this data? It's the only trick I couldn't figure out.
Thank you
Problem solved.
The IMDB uses it's own javascript to do the fql and then spit the json. The proof is below. So by default, what facebook provides is what I already have. Thank you all.
Adulterated facebook script:
(function(d,s,id){var js,stags=d.getElementsByTagName(s)[0];
if(d.getElementById(id)){return;}js=d.createElement(s);js.id=id;
js.src="http://g-ec2.images-amazon.com/images/G/01/imdb/plugins/rating/js/rating.min.js";
stags.parentNode.insertBefore(js,stags);})(document,'script','imdb-rating-api');
Unminified script version:
http://g-ec2.images-amazon.com/images/G/01/imdb/plugins/rating/js/rating.js

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