Toegangsrechten van gebruikers synchroniseren (integratie aan de serverzijde)

Uitgevers gebruiken voornamelijk server-side integratie voor het beheer van lezers en hun rechten. UpdateReaderEntitlements gebruiken ze voornamelijk om Google's registratie van een Product ID-recht voor een PPID bij te werken.

Google Cloud-installatie

Het configureren van abonnementskoppeling in Google Cloud omvat twee belangrijke onderdelen:

  1. De API inschakelen voor een bepaald project
  2. Een serviceaccount aanmaken voor toegang tot de API

De API voor abonnementskoppeling inschakelen

Om een ​​serviceaccount te gebruiken en de rechten van een lezer te beheren, moet een Google Cloud-project zowel de Subscription Linking API als een correct geconfigureerd OAuth-serviceaccount hebben ingeschakeld. Om de Subscription Linking API voor een project in te schakelen, navigeert u via het menu -> API's en services -> Bibliotheek naar Subscription Linking of gaat u rechtstreeks naar de pagina:


https://console.cloud.google.com/apis/library?project=gcp_project_id

api

Figuur 1. Navigeren naar de API-bibliotheek en de API inschakelen voor een Google Cloud-project.

Een serviceaccount aanmaken

Serviceaccounts worden gebruikt om vanuit uw applicatie toegang te verlenen tot de Subscription Linking API.

  1. Maak een serviceaccount aan in de console van uw project.
  2. Maak referenties voor het serviceaccount en sla het bestand credentials.json op op een veilige locatie die toegankelijk is voor uw toepassing.
  3. Ken de IAM-rol 'Subscription Linking Admin' toe aan het serviceaccount dat u hebt aangemaakt. Voor gedetailleerde controle over de mogelijkheden van het serviceaccount kunt u de juiste rol toewijzen uit de volgende tabel.
Vermogen / Rol Abonnement koppelen Admin Abonnement koppelende kijker Abonnement koppelen rechten viewer
Ontvang lezersrechten
Krijg lezers
Lezersrechten bijwerken
Lezers verwijderen

Gebruik serviceaccounts met de Subscription Linking API

Om aanroepen van de Subscription Linking API met serviceaccounts te verifiëren, gebruikt u de GoogleAPIS-clientbibliotheek (die automatisch access_token aanvragen verwerkt) of ondertekent u aanvragen rechtstreeks met de REST API. Als u de REST API gebruikt, moet u eerst een access_token verkrijgen (via de Google Auth-bibliotheek of met behulp van een serviceaccount-JWT ) en deze vervolgens opnemen in de Authorization header.

Zowel de volgende clientbibliotheek als de REST API- voorbeelden bevatten voorbeeldcode voor het aanroepen van getReader() , getReaderEntitlements() , updateReaderEntitlements() en deleteReader() .

Clientbibliotheek

In dit gedeelte wordt uitgelegd hoe u de googleapis-clientbibliotheek in Node.js gebruikt.

Voorbeeldaanvraag

Stel voor het veld keyFile in de constructor Auth.GoogleAuth het pad naar uw serviceaccountsleutel in. Als u vanwege uw organisatiebeleid geen serviceaccountsleutel kunt exporteren, kunt u de standaardreferentiemethode (ADC) gebruiken. Als u de ADC-methode gebruikt, hoeft u het veld keyFile niet op te geven, omdat ADC zelf naar referenties zoekt .

import {readerrevenuesubscriptionlinking_v1, Auth} from 'googleapis';
const subscriptionLinking = readerrevenuesubscriptionlinking_v1.Readerrevenuesubscriptionlinking;

class SubscriptionLinking {
  constructor() {
    this.auth = new Auth.GoogleAuth({
      keyFile: process.env.KEY_FILE,
      scopes: [
        'https://www.googleapis.com/auth/readerrevenue.subscriptionlinking.manage'
      ],
    })
  }

  init() {
    return new subscriptionLinking(
        {version: 'v1', auth: this.auth})
  }
}

const subscriptionLinkingApi = new SubscriptionLinking();
const client = subscriptionLinkingApi.init();

/**
 * Retrieves details for a specific reader associated with the publication.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @return {Promise<object>} A promise that resolves with the reader's details
 *  from the API.
 */
async function getReader(ppid) {
  const publicationId = process.env.PUBLICATION_ID;
  return await client.publications.readers.get({
    name: `publications/${publicationId}/readers/${ppid}`,
  });
};

/**
 * Updates the entitlements for a specific reader.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader whose
 *  entitlements are being updated.
 * @return {Promise<object>} A promise that resolves with the result of the
 *  updated entitlements object.
 */
async function updateReaderEntitlements(ppid) {
  const publicationId = process.env.PUBLICATION_ID;
  const requestBody = {
    /*
    Refer to
    https://developers.google.com/news/subscribe/subscription-linking/appendix/glossary#entitlements_object
    */
    entitlements : [{
      product_id: `${publicationId}:basic`,
      subscription_token: 'abc1234',
      detail: 'This is our basic plan',
      expire_time: '2025-10-21T03:05:08.200564Z'
    }]
  };
  return await client.publications.readers.updateEntitlements({
    name: `publications/${publicationId}/readers/${ppid}/entitlements`,
    requestBody
  });
};

/**
 * Retrieves the current entitlements for a specific reader.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @return {Promise<object>} A promise that resolves with the reader's entitlements object.
 */
async function getReaderEntitlements(ppid) {
  const publicationId = process.env.PUBLICATION_ID;
  return await client.publications.readers.getEntitlements({
    name: `publications/${publicationId}/readers/${ppid}/entitlements`
  });
};

/**
 * Deletes a specific Subscription Linkikng reader record associated with the publication.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader to be deleted.
 * @param {boolean=} forceDelete - If true, delete the user even if their
 *  entitelements are not empty
 * @return {Promise<object>} A promise that resolves upon successful deletion
 *  with an empty object ({})
 */
async function deleteReader(ppid, forceDelete = false) {
  const publicationId = process.env.PUBLICATION_ID;
  return await client.publications.readers.delete({
    name: `publications/${publicationId}/readers/${ppid}`
    force: forceDelete
  });
};

REST API

Als u REST API-eindpunten wilt aanroepen, kunt u een van de twee methoden gebruiken om accessToken te verkrijgen dat moet worden ingesteld in de Authorization header.

1. Gebruik GoogleAuth -bibliotheek

Voor de credentials kunt u een serviceaccountsleutel of standaardreferentie (ADC) gebruiken. Als u de ADC-methode gebruikt, hoeft u het veld credentials niet op te geven, omdat ADC zelf naar referenties zoekt .

import { GoogleAuth } from 'google-auth-library';
import credentialJson from 'path_to_your_json_file' with { type: 'json' };

const auth = new GoogleAuth({
    credentials: credential_json,
    scopes: [
      'https://www.googleapis.com/auth/readerrevenue.subscriptionlinking.manage'
    ]
});

async function getAccessToken() {
    const accessToken = await auth.getAccessToken();
    return accessToken;
}

2. Genereer een access_token met behulp van een Service Account JWT

import fetch from 'node-fetch';
import jwt from 'jsonwebtoken';

function getSignedJwt() {
  /*
    Either store the service account credentials string in an environmental variable
    Or implement logic to fetch it.
  */
  const key_file = process.env.CREDENTIALS_STRING

  const issueDate = new Date();
  const expireMinutes = 60;
  const offsetInSeconds = issueDate.getTimezoneOffset() * 60000;
  const expireDate = new Date(issueDate.getTime() + (expireMinutes * 60000));
  const iat = Math.floor((issueDate.getTime() + offsetInSeconds) / 1000);
  const exp = Math.floor((expireDate.getTime() + offsetInSeconds) / 1000);

  const token = {
    iss: key_file.client_email,
    iat,
    exp,
    aud: 'https://oauth2.googleapis.com/token',
    scope:'https://www.googleapis.com/auth/readerrevenue.subscriptionlinking.manage',
  }
  return jwt.sign(token, key_file.private_key, {
    algorithm: 'RS256',
    keyid: key_file.private_key_id,
  })
}

async function getAccessToken(signedJwt) {
  let body = new URLSearchParams();
  body.set('grant_type', 'urn:ietf:params:oauth:grant-type:jwt-bearer');
  body.set('assertion', signedJwt);
  const response = await fetch('https://oauth2.googleapis.com/token', {
    method: 'POST',
    headers: {'Content-Type': 'application/x-www-form-urlencoded'},
    body
  })
  const accessResponse = await response.json();
  return accessResponse.access_token;
}

Voorbeeldcode voor REST API-aanroepen met de Google Auth-bibliotheek

import { GoogleAuth } from 'google-auth-library';
import fetch from 'node-fetch'
import credentialJson from 'path_to_your_json_file' with { type: 'json' };

const BASE_SUBSCRIPTION_LINKING_API_URL='https://readerrevenuesubscriptionlinking.googleapis.com/v1';
const publicationId = process.env.PUBLICATION_ID

const auth = new GoogleAuth({
    credentials: credentialJson,
    scopes: [
      'https://www.googleapis.com/auth/readerrevenue.subscriptionlinking.manage'
    ]
});

async function getAccessToken() {
    const accessToken = await auth.getAccessToken();
    return accessToken;
}

/**
 * Retrieves details for a specific reader associated with the publication.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @return {object} reader json for the given ppid
 */
async function getReader(ppid) {
  const endpoint = `${BASE_SUBSCRIPTION_LINKING_API_URL}/publications/${publicationId}/readers/${ppid}`;
  const accessToken = await getAccessToken();
  const response = await fetch(endpoint, {
     method: 'GET',
     headers: {
       Authorization: `Bearer ${accessToken}`,
     },
   });
  const reader = await response.json();
  return reader;
}

/**
 * Updates the entitlements for a specific reader.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @return {object} the updated entitlements object in json.
 */
async function updateReaderEntitlements(ppid) {
  const endpoint = `${BASE_SUBSCRIPTION_LINKING_API_URL}/publications/${publicationId}/readers/${ppid}/entitlements`;
  const requestBody = {
    /*
    Refer to
    https://developers.google.com/news/subscribe/subscription-linking/appendix/glossary#entitlements_object
    */
    entitlements : [{
      product_id: `${publicationId}:basic`,
      subscription_token: 'abc1234',
      detail: 'This is our basic plan',
      expire_time: '2025-10-21T03:05:08.200564Z'
    }]
  };
  const response = await fetch(endpoint, {
     method: 'PATCH',
     headers: {
       Authorization: `Bearer ${accessToken}`,
       'Content-Type': 'application/json',
     },
     body: JSON.stringify(requestBody)
   })
  const updatedEntitlements = await response.json();
  return updatedEntitlements;
}

/**
 * Retrieves the current entitlements for a specific reader.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @return {object} the reader's entitlements object in json.
 */
async function getReaderEntitlements(ppid) {
  const endpoint = `${BASE_SUBSCRIPTION_LINKING_API_URL}/publications/${publicationId}/readers/${ppid}/entitlements`;
  const accessToken = await getAccessToken();
  const response = await fetch(endpoint, {
     method: 'GET',
     headers: {
       Authorization: `Bearer ${accessToken}`,
     },
   });
  const entitlements = await response.json();
  return entitlements;
}

/**
 * Deletes a specific Subscription Linkikng reader record associated with the publication.
 * @async
 * @param {string} ppid - The Publisher Provided ID (ppid) for the reader.
 * @param {boolean=} forceDelete - If true, delete the user even if their
 *  entitelements are not empty
 * @return {object} returns an empty object ({}) if the delete operation is successful
 */
async function deleteReader(ppid, forceDelete = false) {
  const endpoint = `${BASE_SUBSCRIPTION_LINKING_API_URL}/publications/${publicationId}/readers/${ppid}?force=${forceDelete}`;
  const response = await fetch(endpoint, {
     method: 'DELETE',
     headers: {
       Authorization: `Bearer ${accessToken}`,
     }
   });
  const result = await response.json();
  return result;
}