We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b58ef18 commit 39fbf48Copy full SHA for 39fbf48
1 file changed
docs/quickstart/src/main/java/DocsQuickstart.java
@@ -68,8 +68,8 @@ private static Credential getCredentials(final NetHttpTransport HTTP_TRANSPORT)
68
.setDataStoreFactory(new FileDataStoreFactory(new java.io.File(TOKENS_DIRECTORY_PATH)))
69
.setAccessType("offline")
70
.build();
71
- LocalServerReceiver receier = new LocalServerReceiver.Builder().setPort(8888).build();
72
- return new AuthorizationCodeInstalledApp(flow, receier).authorize("user");
+ LocalServerReceiver receiver = new LocalServerReceiver.Builder().setPort(8888).build();
+ return new AuthorizationCodeInstalledApp(flow, receiver).authorize("user");
73
}
74
75
public static void main(String... args) throws IOException, GeneralSecurityException {
0 commit comments