Authentication and profile post posting working well when post in company page give below error
Response: 500 Internal Server Error
{
"errorCode": 0,
"message": "Internal service error",
"requestId": "DBF51M03PY",
"status": 500,
"timestamp": 1532353548757
}
is there any change in API? Anyone face same issue? Same code working 2-3 days ago.
https://api.linkedin.com/v1/companies/" + companyPageId + "/shares?format=json
Related
I'm new to Amadeus development. I'm using Amadeus Self service API's to get flights search from searched term. Everything used to work fine, but from today, if i call an api, I'm receiving error 403 forbidden.
{
"errors": [
{
"status": 403,
"code": 35283,
"title": "FORBIDDEN",
"detail": "Incorrect user, no configuration found"
}
] }
I have tried to with different api keys.
Any answers much appreciated.
1 of every 4 times we try to log in via the LinkedIn API we receive the following error.
It is quite strange because after we refresh the browser and run the auth call again it works. Any ideas?
{
"errorCode": 0,
"message": "Unknown authentication scheme",
"requestId": "9VFCEA1OLH",
"status": 401,
"timestamp": 1523873487174
}
Image
we are registered with LI for posting on timeline and company pages.
In recent past and present, we have been repeatedly facing the issue of 'Internal Server Error' with post success. And next day it disappears. the behavior of the API's is surprising.
The error is exactly the same:
{
"errorCode": 0,
"message": "Internal API server error",
"requestId": "0083ZG77NP",
"status": 500,
"timestamp": 1521124204410
}
We follow https://developer.linkedin.com/docs/company-pages and are using https://api.linkedin.com/v1/companies/{id}/shares?format=json to post into the comapany pages.
Also, haven't observed any new changes to API.
Someone please help me understand what's happening with LI or are we missing something?
I recieved an error from Linkedin API /company-statistics.
I was using apigee console, launching this API https://api.linkedin.com/v1/companies/2414183/company-statistics?format=json. and I get the following response:
{
"errorCode": 0,
"message": "Internal service error",
"requestId": "3D4B9V007S",
"status": 500,
"timestamp": 1464778594404
}
Plesa advise as soon as possible
I answered this question here.
This error seems to be related to the "test" company with id
"2414183".
I had the same issue but when i used the same command with my company
ID, I received a well formed JSON in response with all statistics.
I want to use google calendar notification.
I have deployed my Meteor application to
https://google-push-notification.meteor.com
I have verified the url in google web master.
Added the same domain to Domain Verification of Google Console.
I have created Meteor rest api of https://google-push-notification.meteor.com/api/articles for get and post method both.
Below is the postman collection of apis. https://www.getpostman.com/collections/106be7c94d35fcbdb0f8
Post https://www.googleapis.com/calendar/v3/calendars/abc#gmail.com/events/watch
Authorization: Bearer ya29.YwJdqjlSv8Tkl5MEJgiVXQPGxE24ZfITuf8gt0C8DO_VHDvB_1mRAgpAx64R6Wpw8I6fiw
Content-Type: application/json
{
"id": "ya29.XwI-RJ54rS3dbRHgak8V_iTuV7uAWJoZfRFnUE76uCIIUbw4eILPsdEME56Jm5_EfDtWWWs",
"type": "web_hook",
"address": "https://google-push-notification.meteor.com/api/items"
}
I am getting the following response
{
"error": {
"errors": [
{
"domain": "global",
"reason": "push.webhookUrlUnauthorized",
"message": "Unauthorized WebHook callback channel: https://google-push-notification.meteor.com/api/articles"
}
],
"code": 401,
"message": "Unauthorized WebHook callback channel: https://google-push-notification.meteor.com/api/articles"
}
}
Why am I getting push.webhookUrlUnauthorized response even when I have verified my site in google and added the same domain in google console.
Can anyone please help us to solve the issue
According to the google forum, make sure you have validate the following items below:
Please make sure to follow the steps to correctly verify that the domain indeed belongs to you here: https://support.google.com/webmasters/answer/35179
It must be a https endpoint and the same endpoint must also be present in the developer console as per instructions here: https://developers.google.com/google-apps/calendar/v3/push#registering
Hope this resolve your issue. Cheers!