I'm trying to connect to Upwork's new GraphQL API, having a heck of a time. All authorization is already set, the response is 200 but I am getting this error:
{"errors":[{"message":"Validation error of type FieldUndefined: Field 'user' in type 'Query' is undefined @ 'user'","locations":[{"line":2,"column":6}],"extensions":{"classification":"ValidationError"}}]}
This is my basic function:
function getUpwork() {
var service = getService("upwork");
var url = "https://api.upwork.com/graphql";
var payload = JSON.stringify({
"query":
`query {
user {
id
email
}
} ` });
var headers = {
"Authorization": `bearer ${service.getAccessToken()}`,
"Content-Type": "application/json",
};
var params = {
"method": "POST",
payload,
headers
};
var response = UrlFetchApp.fetch(url, params);
Logger
.log(response.getResponseCode())
.log(response.getContentText())
}
I am just trying to get something returned from the API, but no dice. Documentation here: https://www.upwork.com/developer/documentation/graphql/api/docs/index.html#query-user
Can anyone shed some light on this for me? It's been kicking my butt for months. I have tried tons of configurations of the query.
Try adding
user
to payload likeOr removing
query user
altogether:And use propercase
Bearer
: