How to handle the deprecation of Yahoo API? - yahoo-api

When I tried to call below Yahoo API it got responded with 503.I think it got depricated and is there any update API for this or else how can I resolve this issue.
https://query.yahooapis.com/v1/public/yql?q=select * from xml where url="http://osom.cfa.vic.gov.au/public/osom/IN_COMING.rss&format=xml&callback=jQuery19103978128929438782_1596025470119&_=1596025470120
Does anyone know the successor of https://query.yahooapis.com/
Hope someone could help me to resolve this issue. Thanks in advance

Related

Socialite laravel 5.4 Facebook Provider

i have a problem here maybe sameone can help me: i install the Socialite pakcage to my laravel project and in start it work perfect with facebook , google and linkedin provider. But now it get always this message when i try to connect with facebook , and other provider connect perfectly.
What's wrong ?
ClientException in RequestException.php line 111:
Client error: GET https://graph.facebook.com/v2.8/me?access_token=&fields=name,email,gender,verified,link&appsecret_proof=5fbda0d218f94cb8024712269c053f0186d360efd82cd358b588eaf621e0c79c
resulted in a 400 Bad Request response:
{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthExce (truncated...)
I fix the problem !
You need the make same changes in vendor/laravel/socialite/src/Two/FacebookProvider.php file
See here:
github socialite
composer update will fix it by updating the laravel/socialite version
Oh, so I'm not the only one. Good. Waiting on the answer, I've lost like at least 60mins trying to figure this out, I'm quite sure it's gonna be something Facebook related. They're killing their 2.2 api, I guess, today, maybe they messed up something. :/

Errors from Facebook graph API on posting - Service temporarily unavailable

Recently I get temporary errors from Facebook API after user is trying to share a post through "me/feed" route.
The error message is :
"message":"Service temporarily unavailable",
"type":"FacebookApiException",
"is_transient":true, "code":2,
"error_subcode":1609010,
"error_user_title":"URL Not Found",
"error_user_msg":"We had trouble using the URL you provided. Please try again later.",
"fbtrace_id":"DgSULoXJMfK"
Anyone know what could be the reason for this?
I'm pretty confident this is a bug. We're finding that the exact same post will fail when published to some pages, but succeed on others. This sort of inconsistency along with the feedback of others (see below) suggests that this behavior is due to a bug.
https://developers.facebook.com/bugs/1571642049794292/
I've the same error when try to use Facebook OAuth2 with scope=email name
Fixed by setting scope=email

Flowplayer Facebook Integration

I need help integrating flowplayer into facebook. I have done a lot of research and know that I am very close. I think that my only problem is the syntax that I use for the URL, which is here:
http://www.pearlsquirrel.com/flowplayer-3.2.7.swf?config=%7B%27clip%27%3A%7B%27url%27%3A%27http%3A%2F%pearlsquirrel.com%2Fmp3%2FeggoAngel%20[Cover]_mixdown.mp3%27%7D%7D
I keep getting the error
300: Player initialization failed Error #1009.
I know that I almost have it working because I can see the Flash player in facebook, it just gives me this error. Can someone please check my syntax of the above link and tell me if it is correct and if you know how to solve this problem, please let me know.
You missed a / sign what is %2F, but there is just a % sign. So the right url should be:
http://www.pearlsquirrel.com/flowplayer-3.2.7.swf?config=%7B%27clip%27%3A%7B%27url%27%3A%27http%3A%2F%2Fpearlsquirrel.com%2Fmp3%2FeggoAngel%20[Cover]_mixdown.mp3%27%7D%7D
I don't exactly know where do you use this url, here is the url without encode:
http://www.pearlsquirrel.com/flowplayer-3.2.7.swf?config={'clip':{'url':'http://pearlsquirrel.com/mp3/eggoAngel [Cover]_mixdown.mp3'}}
Please try it.

Getting user statuses/posts using API

I want to collect some posts/statuses using https://graph.facebook.com/search?q=sampleword, but it didn't return any results.
I use this word in my status: http://www.facebook.com/100002364215777/posts/189715107783962 , so it should be found.
What I did wrong/how to do it in another way?
For a start you will need to regeister as a facebook developer and get an access token.
Please read the Graph API doc It will tell you more about Authorization and how to do Searches.
I've found an answer few days ago - it's a bug: http://developers.facebook.com/bugs/251747031550291?browse=search_4ede11dc12bef5f22614385

Twitter API integration problem in iphone

I am integrating this API in twitter.
http://mobile.tutsplus.com/tutorials/iphone/twitter-api-iphone/
but when I am running it with my application I am seeing an message
" TWoah there!
This page is no longer valid. It looks like someone already used the token information you provided. Please return to the site that sent you to this page and try again ... it was probably an honest mistake ".
I have given right kOAuthConsumerKey and kOAuthConsumerSecret. What is wrong with the code ?
Thanks in advance.
You have to get new ConsumerSecret and ConsumerKey, the given keys in tutorial will not work. Sign in here and obtain keys for use.