Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Skripten / Logik
  4. JavaScript
  5. Google API OAuth2 - Wie?

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    16
    1
    1.3k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    784

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.0k

Google API OAuth2 - Wie?

Geplant Angeheftet Gesperrt Verschoben JavaScript
5 Beiträge 2 Kommentatoren 484 Aufrufe 2 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • M Offline
    M Offline
    maxpd
    schrieb am zuletzt editiert von
    #1

    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

    Gruß
    maxpd

    Raspi 4 8gb | iobroker + pivccu3 | 46 Adapter | 68 Scripte, 120 Devices

    arteckA 1 Antwort Letzte Antwort
    0
    • M maxpd

      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

      arteckA Offline
      arteckA Offline
      arteck
      Developer Most Active
      schrieb am zuletzt editiert von
      #2

      @maxpd https://stackoverflow.com/questions/67880284/oauth2-is-not-a-constructor

      zigbee hab ich, zwave auch, nuc's genauso und HA auch

      M 1 Antwort Letzte Antwort
      0
      • arteckA arteck

        @maxpd https://stackoverflow.com/questions/67880284/oauth2-is-not-a-constructor

        M Offline
        M Offline
        maxpd
        schrieb am zuletzt editiert von maxpd
        #3

        @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 mit

        fs.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.

        Gruß
        maxpd

        Raspi 4 8gb | iobroker + pivccu3 | 46 Adapter | 68 Scripte, 120 Devices

        M 1 Antwort Letzte Antwort
        0
        • M 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 mit

          fs.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.

          M Offline
          M Offline
          maxpd
          schrieb am zuletzt editiert von
          #4

          Hat noch jemand einen Tipp, wie ich die Authentifizierung bewerkstelligen kann?

          Gruß
          maxpd

          Raspi 4 8gb | iobroker + pivccu3 | 46 Adapter | 68 Scripte, 120 Devices

          M 1 Antwort Letzte Antwort
          0
          • M maxpd

            Hat noch jemand einen Tipp, wie ich die Authentifizierung bewerkstelligen kann?

            M Offline
            M Offline
            maxpd
            schrieb am zuletzt editiert von
            #5

            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.

            Gruß
            maxpd

            Raspi 4 8gb | iobroker + pivccu3 | 46 Adapter | 68 Scripte, 120 Devices

            1 Antwort Letzte Antwort
            0
            Antworten
            • In einem neuen Thema antworten
            Anmelden zum Antworten
            • Älteste zuerst
            • Neuste zuerst
            • Meiste Stimmen


            Support us

            ioBroker
            Community Adapters
            Donate

            330

            Online

            32.6k

            Benutzer

            82.0k

            Themen

            1.3m

            Beiträge
            Community
            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
            ioBroker Community 2014-2025
            logo
            • Anmelden

            • Du hast noch kein Konto? Registrieren

            • Anmelden oder registrieren, um zu suchen
            • Erster Beitrag
              Letzter Beitrag
            0
            • Home
            • Aktuell
            • Tags
            • Ungelesen 0
            • Kategorien
            • Unreplied
            • Beliebt
            • GitHub
            • Docu
            • Hilfe