add email scope

This commit is contained in:
Hailey
2025-07-18 00:53:56 -07:00
parent 22e64be877
commit 3ba5a5042d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"redirect_uris": [
"https://bsky.hailey.at/auth/web/callback"
],
"scope": "atproto transition:generic",
"scope": "atproto transition:generic transition:email",
"token_endpoint_auth_method": "none",
"response_types": [
"code"
@@ -5,7 +5,7 @@
"redirect_uris": [
"at.hailey.bsky:/auth/native/callback"
],
"scope": "atproto transition:generic",
"scope": "atproto transition:generic transition:email",
"token_endpoint_auth_method": "none",
"response_types": [
"code"
+1 -1
View File
@@ -9,7 +9,7 @@ export function createNativeOAuthClient() {
client_name: 'Bluesky Native App (Hailey Demo)',
client_uri: 'https://bsky.hailey.at',
redirect_uris: ['at.hailey.bsky:/auth/native/callback'],
scope: 'atproto transition:generic',
scope: 'atproto transition:generic transition:email',
token_endpoint_auth_method: 'none',
response_types: ['code'],
grant_types: ['authorization_code', 'refresh_token'],
+1 -1
View File
@@ -14,7 +14,7 @@ export function createWebOAuthClient() {
client_name: 'Bluesky (Hailey Demo)',
client_uri: 'https://bsky.hailey.at',
redirect_uris: ['https://bsky.hailey.at/auth/web/callback'],
scope: 'atproto transition:generic',
scope: 'atproto transition:generic transition:email',
token_endpoint_auth_method: 'none',
response_types: ['code'],
grant_types: ['authorization_code', 'refresh_token'],