Hemos recibido del servidor el siguiente error de HTTP:
{“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]}
I am getting this error How to fix plz let me know in details m not getting where to change…
06-29 17:00:56.578: D/Twitter Update Error(533): {“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]}
Array ( [pgID] => [isPosted] => 0 [pDate] => 2013-07-01 15:51:18 [Error] => {“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]} MSG:Neymar-inspired Brazil humble Spain to win Confederations Cup final - http://tappinews.com/neymar-inspired-brazil-humble-spain-to-win-confederations-cup-final/ )
Can someone help me?
i am using twitter4j. previously it was working fine but now it is showing error
410:
07-03 12:22:35.478: W/System.err(7085): {“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]}.
Twitter4j site says that, twitter4j library is compatible with api 1.1
Their comments helped fix a bug that was on
Twitter sharekit, I changed @ “https://
api.twitter.com/1/statuses/update.json” by @
"https://api.twitter.com/1.1/statuses/
update.json ". Thank you.
Hi Paul,
Me too facing same issue in ios
{“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]}
anyone help me
thanks in advance
{“errors”:[{“message”:“Bad Authentication data”,“code”:215}]}
What to do ?
Hello,
Is the request authenticated?
Can u up date the code fo this trouble?
Hello,
I get same error like this please tell me what i have to do?
Thank you
@episod there is an app developed using PhoneGap but it has stopped working.It shows error message “API v1 no longer exists. Please migrate to API v1.1” . What should i do to make that app working fine again? Do i need to change the Callback URL https://upload.twitter.com/1/statuses/update_with_media.format from Oauth Settings ?
Please help me to create tweet hash search in javascript using api V1.1 
I am very stuck
Please help me .WHY ???
Something is technically wrong! {“errors”: [{“message”: “The
Twitter REST API v1 is no
longer active. Please migrate
to API v1.1. https://
dev.twitter.com/docs/api/1.1/
overview.”, “code”: 68}]}
episod
#22
The API you’re using no longer exists:
[faq:17750]
Hi i am facing these problem in c#.net :
{“errors”: [{“message”: "The Twitter REST API v1 is no longer active. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.", “code”: 68}]}
Please provide me solution ASAP.
episod
#24
Likely you’ll need to upgrade whatever library you’re using and/or review how it uses the API.
getting the same issue how can we change it please let me know if anyone gets the solution
You need to update your libraries, notably
OAuth and any Twitter API library.
Prior to 1.1, they all called .xml now they call json
for example:
private static const URL_PUBLIC_TIMELINE:String = “/statuses/public_timeline.json”;
private static const URL_HOME_TIMELINE:String = “/statuses/home_timeline.json”;
private static const URL_FRIENDS_TIMELINE:String = “/statuses/friends_timeline.json”;
private static const URL_USER_TIMELINE:String = “/statuses/user_timeline”;
private static const URL_RETWEETS_BY_ME:String = “/statuses/retweeted_by_me.json”;
private static const URL_RETWEETS_TO_ME:String = “/statuses/retweeted_to_me.json”;
private static const URL_RETWEETS_OF_ME:String = “/statuses/retweets_of_me.json”;
In version 1., all those ‘json’ were ‘xml’
In OAuth ( if you are using some third party library)
OAUTH_DOMAIN:String = "https://api.twitter.com <- Note. It is NOT 1.1, nor even 1.
In my library, I also have this
urlRequest.url = _serviceHost+request;
var signedData:String = _oAuth.getSignedRequest(urlRequest.method, "https://api.twitter.com/1.1"+request, urlRequest.data as URLVariables);
urlRequest.data = new URLVariables(signedData);
return urlRequest;
//Note: https://api.twitter.com/1.1"+request, urlRequest.data as URLVariables);
// in the call to oauth
and another example where this is used.
private var _serviceHost:String = "https://api.twitter.com/1.1";
/**
* Service Host URL you want to use.
* This has to be changed if you are going to use tweetr
* from a web app. Since the crossdomain policy of twitter.com
* is very restrictive. use Tweetr's own PHPProxy Class for this.
This is all AS3 code by the way, but you should get the picture I hope.
where i have to change in code