Edits history of script submission #1374 for ' List linkers for an app (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List linkers for an app
     * Gets a list of all linkers
    for the authenticated application.
     */
    export async function main(auth: Bitbucket) {
      const url = new URL(`https://api.bitbucket.org/2.0/addon/linkers`);
    
      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;
    };
    /**
     * List linkers for an app
     * Gets a list of all linkers
    for the authenticated application.
     */
    export async function main(auth: Bitbucket) {
      const url = new URL(`https://api.bitbucket.org/2.0/addon/linkers`);
    
      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 880 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List linkers for an app
     * Gets a list of all [linkers](/cloud/bitbucket/modules/linker/)
    for the authenticated application.
     */
    export async function main(auth: Bitbucket) {
      const url = new URL(`https://api.bitbucket.org/2.0/addon/linkers`);
    
      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