Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Created July 2, 2019 03:31
Show Gist options
  • Save nomoney4me/82c26e05d646db715eb0db7b8b299198 to your computer and use it in GitHub Desktop.
Save nomoney4me/82c26e05d646db715eb0db7b8b299198 to your computer and use it in GitHub Desktop.
import java.io.File;
import java.io.InputStream;
public class Authenticate {
public static void main(String[] args) {
File jsonKey = new File(KEY_FILE);
InputStream inputStream = new FileInputStream(jsonKey);
GoogleCredential credential =
GoogleCredential.fromStream(inputStream, HTTP_TRANSPORT, JSON_FACTORY);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment