java - The request was invalid. An accompanying error message will explain why -


i developing first java twitter application;

i have developed few modules search username , search #tagname, search geolocation .

it working properly, today suddendly it's showing errors.

i posting few lines of error code

400:the request invalid. accompanying error message explain why.

this status code returned during rate limiting (https://dev.twitter.com/pages/rate-limiting).

<html>   <head>     <title>400 bad request</title>   </head>   <body>     <h1>error 400 bad request</h1>     <p>bad request</p>     twitterexception    { exceptioncode=[d35baff5-08c3b248], statuscode=400,     retryafter=-1, ratelimitstatus=null, featurespecificratelimitstatus=null,      version=2.2.5}     @ twitter4j.internal.http.httpclientimpl.request(httpclientimpl.java:185)     @ twitter4j.internal.http.httpclientwrapper.request(httpclientwrapper.java 

can helped me out ? reason getting type of error , how can solve error ?

as developer can request whitelisting of account, raising limit 20 000 requests / hours.

see here


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -