Skip to content

Commit 881b268

Browse files
authored
Merge pull request #63 from 1minus1limited/master
Fix the scopes syntax in the authorize method parameters
2 parents cdc5ed4 + a9b6aa1 commit 881b268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ manager.configure({
2929
});
3030

3131
// ...
32-
manager.authorize('google', {scopes: 'profile,email'})
32+
manager.authorize('google', {scopes: 'profile email'})
3333
.then(resp => console.log('Your users ID'))
3434
.catch(err => console.log('There was an error'));
3535
```

0 commit comments

Comments
 (0)