I’m trying to build a simple golang even upload client, and am running into an issue trying to collect my actorID from the Identities query. I’ve got a valid auth token for the write:event:create read:profile read:group scopes, but then when I try to do the simple Identities query with that token the API returns this:
{
"data": {
"identities": null
},
"errors": [
{
"code": "unknown_error",
"field": null,
"locations": [
{
"column": 3,
"line": 2
}
],
"message": "Not authorized to access this person",
"path": [
"identities"
],
"status_code": 500
}
]
}
Alternately is there some other way to get my ActorID for the createEvents mutation?