type Bitbucket = {
username: string;
password: string;
};
/**
* Get a user
* Gets the public information associated with a user account.
If the user's profile is private, `location`, `website` and
`created_on` elements are omitted.
Note that the user object returned by this operation is changing significantly, due to privacy changes.
See the [announcement](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/#changes-to-bitbucket-user-objects) for details.
*/
export async function main(auth: Bitbucket, selected_user: string) {
const url = new URL(`https://api.bitbucket.org/2.0/users/${selected_user}`);
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.json();
}
Submitted by hugo697 375 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Get a user
* Gets the public information associated with a user account.
If the user's profile is private, `location`, `website` and
`created_on` elements are omitted.
Note that the user object returned by this operation is changing significantly, due to privacy changes.
See the [announcement](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/#changes-to-bitbucket-user-objects) for details.
*/
export async function main(auth: Bitbucket, selected_user: string) {
const url = new URL(`https://api.bitbucket.org/2.0/users/${selected_user}`);
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.json();
}
Submitted by hugo697 935 days ago