diff options
author | Aaron Parecki <aaron@parecki.com> | 2022-02-13 15:56:43 +0000 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2022-02-13 15:56:43 +0000 |
commit | 61552f92fcf8a33e9796c7ff93d1872ee68d9a2e (patch) | |
tree | cba82749de14ca6d918d23c152cab70cacbd6d5e /controllers/auth.php | |
parent | b1ee2ffe013a4ffaadb790126c8f9578101eba36 (diff) |
request profile scope
Diffstat (limited to 'controllers/auth.php')
-rw-r--r-- | controllers/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/auth.php b/controllers/auth.php index 0e671b6..50fd15b 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -9,7 +9,7 @@ $app->get('/auth/start', function() use($app) { $params = $req->params(); - $defaultScope = 'create update media'; + $defaultScope = 'create update media profile'; list($authorizationURL, $error) = IndieAuth\Client::begin($params['me'], $defaultScope); |