I am integrating api in my application. when I am trying to tweet I am getting an error request 401, it seems to "Authentication credentials were missing or incorrect". How will I remove this error ?
Thanks
Related
I have an error on KNIME. I am trying to scrape the tweets from twitter but I have this error:
<< ERROR Twitter Search 0:2 Execute failed: 400:The
request was invalid. An accompanying error message will explain why.
This is the status code will be returned during version 1.0 rate
limiting (https://dev.twitter.com/pages/rate-limiting). In API v1.1, a
request without authentication is considered invalid and you will get
this response. message - Bad Authentication data. code - 215>>
This errors is due to you are issuing your request without authentication, first you need to authenticate against twitter and after you're be able to issue the request properly.
I'm trying to get an authorization code to exchange for a user access token to gain access to the Instagram Basic Graph API. I've followed the directions on the Facebook Developer Page and am stuck on authenticating the user. I've tried loading the authorization uri:
https://api.instagram.com/oauth/authorize
?client_id={app-id}
&redirect_uri={redirect-uri}
&scope=user_profile,user_media
&response_type=code
on the browser, which returned:
{"error_type": "OAuthException", "code": 400, "error_message": "Invalid platform app"}
I've also tried using Postman to perform a GET request as described by Facebook, and the response returns 404, shown below:
screenshot of postman GET request attempt
What am I doing wrong?
SO when I try to get a refresh Token from Mautic I am getting an auth code but then from there I am not able to get an access/refresh token. When I try to get it I just receive a 403 error message with invalid code as the description. Not sure what is going on!
Thanks
Cam
My code
$user = Socialize::with('facebook')->user();
then got
Client error response [url] https://graph.facebook.com/oauth/access_token?client_id=1562205014036534&client_secret=3b9807e0d826bfd66fb3fbdc627fd015&code&redirect_uri=http%3A%2F%2Ffacebooktest.dev [status code] 400 [reason phrase] Bad Request
and google
$user = Socialize::with('google')->user();
got look like same
Client error response [url] https://accounts.google.com/o/oauth2/token [status code] 400 [reason phrase] Bad Request
but twitter it's work
thank for clarify
I had the same problem and it was because of the version of socialite. I downgraded to 2.0.0 and the problem was gone.
The problem is your services(config/services.php). check your facebook client_id and client_secret if it correspond with the one from your facebook developers page.
If you are trying to loggin with another facebook account to test your application in development phase, it will throw same error.
Enjoy........
I am working on an app that uses the same OAuth token and OAuth token secret for multiple requests to post a tweet on behalf of a user. On the first request, the tweet is successfully posted. However on subsequent requests I get an HTTP Error 403: Forbidden. Could this be caused by reusing the OAuth tokens? I am also tweeting the same message on each request.
There are two components of a Twitter error response, the HTTP status code (in this case 403) and an error code that provides more detail on the cause of the failure. Which error code are you seeing in the JSON response? It's possible that the error is regarding duplicate tweets.
Twitter REST API error codes