NEWS
Google API OAuth2 - Wie?
-
Hi,
ich möchte auf die Google Fotos API zugreifen.
Muss ein WebServer stehen?
Ich habe es so verstanden, dass an nur einen Webserver benötigt, wenn man sich mit E-Mail + Passwort anmelden will, um Tokens abzufragen.Aber ich habe schon eine Client ID, Secret ID, Access Token, Refresh Token.
Zum Testen habe ich folgendes JS. Die Module googleapis und googlephotos sind im JS Adapter eingetragen.
const google = require('googleapis'); const photos = require('googlephotos'); const { OAuth2 } = require('googleapis'); // Client-ID und Client-Secret aus Google Developer Console const CLIENT_ID = '33697.........'; const CLIENT_SECRET = 'GOC..........'; // Access Token und Refresh Token aus Google-Anmeldung const ACCESS_TOKEN = 'ya...........5nDAhA0171'; const REFRESH_TOKEN = '1//04YtvtObI.....v3ppvfA'; // Optionen für die OAuth2-Autorisierung const oauth2Client = new OAuth2( CLIENT_ID, CLIENT_SECRET, 'https://www.googleapis.com/auth/photoslibrary.readonly' ); // Access Token setzen oauth2Client.setCredentials({ access_token: ACCESS_TOKEN, refresh_token: REFRESH_TOKEN }); // Funktion zum Testen der API-Verbindung async function testConnection() { try { // API-Aufruf mit OAuth2-Autorisierung const response = await google.photos({ version: 'v1', auth: oauth2Client }).albums.list(); // Erfolg: Ausgabe der ersten 5 Albennamen if (response.data.albums) { console.log('Verbindung erfolgreich!'); console.log('Erste 5 Alben in Google Fotos:'); for (const album of response.data.albums.slice(0, 5)) { console.log(album.title); } } else { console.log('Keine Alben in Google Fotos gefunden.'); } } catch (error) { // Fehlermeldung ausgeben console.error('Verbindung fehlgeschlagen:', error.message); } } // Testen der API-Verbindung testConnection();
Aber ich erhalte erstmal nur einen Scriptfehler:
21:18:02.645 error javascript.0 (833953) script.js.Dev.oauth: TypeError: OAuth2 is not a constructor 21:18:02.645 error javascript.0 (833953) at script.js.Dev.oauth:16:22 21:18:02.645 error javascript.0 (833953) at script.js.Dev.oauth:55:3
Gruß
maxpd -
-
@arteck ok, habs mal auf diese Variante versucht.
const fs = require('fs'); const readline = require('readline'); const {google} = require('googleapis'); const Photos = require('googlephotos'); // If modifying these scopes, delete token.json. const SCOPES = ['https://www.googleapis.com/auth/photoslibrary.readonly']; // The file token.json stores the user's access and refresh tokens, and is // created automatically when the authorization flow completes for the first // time. const TOKEN_PATH = 'token.json'; // Load client secrets from a local file. fs.readFile('credentials.json', (err, content) => { if (err) return console.log('Error loading client secret file:', err); // Authorize a client with credentials, then call the Google Calendar API. authorize(JSON.parse(content), listEvents); }); /** * Create an OAuth2 client with the given credentials, and then execute the * given callback function. * @param {Object} credentials The authorization client credentials. * @param {function} callback The callback to call with the authorized client. */ function authorize(credentials, callback) { const {client_secret, client_id, redirect_uris} = credentials.installed; const oAuth2Client = new google.auth.OAuth2( client_id, client_secret, redirect_uris[0]); // Check if we have previously stored a token. fs.readFile(TOKEN_PATH, (err, token) => { if (err) return getAccessToken(oAuth2Client, callback); oAuth2Client.setCredentials(JSON.parse(token)); callback(oAuth2Client); }); } /** * Get and store new token after prompting for user authorization, and then * execute the given callback with the authorized OAuth2 client. * @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for. * @param {getEventsCallback} callback The callback for the authorized client. */ function getAccessToken(oAuth2Client, callback) { const authUrl = oAuth2Client.generateAuthUrl({ access_type: 'offline', scope: SCOPES, }); console.log('Authorize this app by visiting this url:', authUrl); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); rl.question('Enter the code from that page here: ', (code) => { rl.close(); oAuth2Client.getToken(code, (err, token) => { if (err) return console.error('Error retrieving access token', err); oAuth2Client.setCredentials(token); // Store the token to disk for later program executions fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => { if (err) return console.error(err); console.log('Token stored to', TOKEN_PATH); }); callback(oAuth2Client); }); }); } /** * Lists the next 10 events on the user's primary calendar. * @param {google.auth.OAuth2} auth An authorized OAuth2 client. */ function testConnection() { // API-Aufruf mit OAuth2-Autorisierung const photos = google.photos({version: 'v1', auth}); albums.list(); // Erfolg: Ausgabe der ersten 5 Albennamen if (response.data.albums) { console.log('Verbindung erfolgreich!'); console.log('Erste 5 Alben in Google Fotos:'); for (const album of response.data.albums.slice(0, 5)) { console.log(album.title); } } else { console.log('Keine Alben in Google Fotos gefunden.'); } }
Habe die Credentials json direkt aus der Google Cloud heruntergeladen und abgelegt. Aber ich erhalte nur
'Error loading client secret file:'
Ich weiß nicht ob er das File gar nicht findet. Liegt straight unter Benutzerdaten.
Habe es auch versucht mitfs.readFile('http://IP:PORT/0_userdata.0/credentials.json', (err, content) => {
Die URL funktioniert zumindest zum abspielen von Musikfiles.
Oder ob er nicht mit dem Inhalt klar kommt? Aber sollte ja das von Google erwartete Format sein, wenn die Datei auch von Google selbst kommt.
-
Hat noch jemand einen Tipp, wie ich die Authentifizierung bewerkstelligen kann?
-
Okay, herausgefunden, dass die Datei in den JavaScript Ordner gehört. Dort hab ich es auf oberster Ebene mal getestet. Der Fehler bleibt der gleiche.