Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add a todo WRT correctly setting the X-Goog-AuthUser header
  • Loading branch information
kevmoo committed Apr 21, 2021
commit 051c88fde13709801fbe05cf96140cee538d1ad7
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ class GoogleSignInAccount implements GoogleIdentity {
final String? token = (await authentication).accessToken;
return <String, String>{
"Authorization": "Bearer $token",
// TODO(kevmoo): Use the correct value once it's available from authentication
// See https://github.com/flutter/flutter/issues/80905
"X-Goog-AuthUser": "0",
};
}
Expand Down