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.
I recently implemented FCM messaging as a means to perform push notifications to a Cordova based application. My system sends 100-1000 push notifications a day to individual users.
I'm contacting the FCM Messaging service using the FcmSharp library. https://github.com/bytefish/FcmSharp which as far as i can tell is using the FCM HTTP v1 API.
$"https://fcm.googleapis.com/v1/projects/{settings.Project}/messages:send"
So far it seem to be running ok. Yet i am continuously getting errors logged from the service that sends the messages to FCM indicating that there was a failure.
"error": {
"code": 503,
"message": "The service is currently unavailable.",
"errors": [
{
"message": "The service is currently unavailable.",
"domain": "global",
"reason": "backendError"
}
],
"status": "UNAVAILABLE"
}
The message i am sending (to FCMSharp) also appears to be formatted correctly:
message: {
"validate_only":false,
"message":{
"data":null,
"notification":{
"title":"[MyTitle]",
"body":"[MyBody]"
},
"android":{
"collapse_key":null,
"priority":"HIGH",
"ttl":"0s",
"restricted_package_name":null,
"data":null,
"notification":{
"title":null,
"body":null,
"icon":null,
"color":null,
"sound":"default",
"tag":null,
"click_action":null,
"body_loc_key":null,
"body_loc_args":null,
"title_loc_key":null,
"title_loc_args":null
}
},
"webpush":null,
"apns":{
"headers":null,
"payload":{
"aps":{
"alert":null,
"badge":0,
"sound":"default",
"content-available":0,
"mutable-content":0,
"category":null,
"thread-id":null
}
}
},
"token":"MyValidToken",
"topic":null,
"condition":null
}
As far as i can tell the service is not using the 'staging' environment mentioned in the post below.
FCM service unavailable nack
I am getting hundreds of these UNAVAILABLE answers a day, sometimes for hours on end. Messages are still getting through so i'm not sure i'm getting blacklisted. I don't see anything in their documentation to state if i'm using the wrong URL or hitting some sort of throttling limit.
This was because the FcmSharp service didn't implement the undocumented exponential back-off feature that is required by some Google Apis.
See the GitHub thread for more info.
https://github.com/bytefish/FcmSharp/issues/31
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
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
I have billing account 'Z' connected with project 'X' and google translate api enabled for this project.
Trying to perform GET request
https://www.googleapis.com/language/translate/v2?key={my_key}&q=hello&source=en&target=ru
got output:
{
"error": {
"code": 403,
"message": "Daily Limit Exceeded",
"errors": [
{
"message": "Daily Limit Exceeded",
"domain": "usageLimits",
"reason": "dailyLimitExceeded"
}
]
}
tried to generate another api key, all in vein, api key has no restrictions.
This is a known issue that should have been Fixed as of now, please try again to see if you're still seeing this issue and re-open the Issue #70990743 if necessary.