Edits history of script submission #1412 for ' Get OpenID configuration for OIDC in Pipelines (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Get OpenID configuration for OIDC in Pipelines
     * This is part of OpenID Connect for Pipelines, see https://support.atlassian.com/bitbucket-cloud/docs/integrate-pipelines-with-resource-servers-using-oidc/
     */
    export async function main(auth: Bitbucket, workspace: string) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/pipelines-config/identity/oidc/.well-known/openid-configuration`
      );
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.text();
    }
    

    Submitted by hugo697 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Get OpenID configuration for OIDC in Pipelines
     * This is part of OpenID Connect for Pipelines, see https://support.atlassian.com/bitbucket-cloud/docs/integrate-pipelines-with-resource-servers-using-oidc/
     */
    export async function main(auth: Bitbucket, workspace: string) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/pipelines-config/identity/oidc/.well-known/openid-configuration`
      );
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.text();
    }
    

    Submitted by hugo697 935 days ago