Skip to content

Commit f554570

Browse files
committed
Update auth_service.dart
1 parent 35471f9 commit f554570

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/services/auth_service.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class AuthService {
287287
try {
288288
await _ensureGoogleInitialized();
289289
final authz = await _googleSignIn.authorizationClient.authorizeScopes(
290-
['https://www.googleapis.com/auth/forms.body'],
290+
['https://www.googleapis.com/auth/drive.file'],
291291
);
292292
return authz != null;
293293
} catch (e) {
@@ -300,7 +300,7 @@ class AuthService {
300300
try {
301301
await _ensureGoogleInitialized();
302302
final authz = await _googleSignIn.authorizationClient.authorizationForScopes(
303-
['https://www.googleapis.com/auth/forms.body'],
303+
['https://www.googleapis.com/auth/drive.file'],
304304
);
305305
return authz?.accessToken;
306306
} catch (e) {

0 commit comments

Comments
 (0)