Howdy!
I’m trying to create a twitch extension but I’ve hit a road block in the place I’d least expect.
For some reason I am simply unable to create an extension.
Any extension name I input results in a:
Sorry, an error occurred when submitting the field on this page. Please double check the name field and then try saving changes again.
The names I tried do not contains the words “Extention,” “Twitch,” or the like.
===
Taking a look at the console reveals that pressing the “Continue” button results in this error:
[GraphQL] One or more GraphQL errors were detected on request 1234567890ABCDEFGHIJKLMNOP. DevExtensionCreatePage_CreateExtensionClient: service error
With this attached JSON object representing the request / response of the associated GQL call:
in this case I tried to create an extension with the name “MeroroTest”
[
{
"request": {
"operationName": "DevExtensionCreatePage_CreateExtensionClient",
"variables": {
"input": {
"name": "MeroroTest",
"redirectURI": "https://localhost",
"organizationID": null
}
},
"extensions": {
"persistedQuery": {
"version": 1,
"sha256Hash": "01234567890abcdefghijklmnopqrstuvwxyz01234567890abcdefghijklmnop"
}
}
},
"response": {
"errors": [
{
"message": "service error",
"path": [
"createExtensionClient"
]
}
],
"data": {
"createExtensionClient": null
},
"extensions": {
"durationMilliseconds": 1,
"operationName": "DevExtensionCreatePage_CreateExtensionClient",
"requestID": "1234567890ABCDEFGHIJKLMNOP"
}
}
}
]
This error consistently occurs between Chrome / Edge / Firefox
===
Is this some sort of transient issue?
Or is there something that I am missing / doing wrong?