I’ve been given feedback on an app to remove scopes not in use by my app.
This would mean my app requires no scopes, however when I try to pass empty scopes, I receive an OAuth error invalid_scope error.
const shopify = shopifyApi({
...otherStuff,
scopes: [' ']
})
I’ve tried many different methods, setting scope to: undefined, null, , [‘’], [’ ']. None of these work and all repeat the same error.
How can I get around this?
