Edits history of script submission #1452 for ' List linker values for a linker (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List linker values for a linker
     * Gets a list of all linker values for the
    specified linker of the authenticated application.
    
    A linker value lets applications supply values to modify its regular expression.
    
    The base regular expression must use a Bitbucket-specific match group `(?K)`
    which will be translated to `([\w\-]+)`. A value must match this pattern.
    
    Read more about linker values
     */
    export async function main(auth: Bitbucket, linker_key: string) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
      );
    
      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 linker values for a linker
     * Gets a list of all linker values for the
    specified linker of the authenticated application.
    
    A linker value lets applications supply values to modify its regular expression.
    
    The base regular expression must use a Bitbucket-specific match group `(?K)`
    which will be translated to `([\w\-]+)`. A value must match this pattern.
    
    Read more about linker values
     */
    export async function main(auth: Bitbucket, linker_key: string) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
      );
    
      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 linker values for a linker
     * Gets a list of all [linker](/cloud/bitbucket/modules/linker/) values for the
    specified linker of the authenticated application.
    
    A linker value lets applications supply values to modify its regular expression.
    
    The base regular expression must use a Bitbucket-specific match group `(?K)`
    which will be translated to `([\w\-]+)`. A value must match this pattern.
    
    [Read more about linker values](/cloud/bitbucket/modules/linker/#usingthebitbucketapitosupplyvalues)
     */
    export async function main(auth: Bitbucket, linker_key: string) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
      );
    
      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