//native
type Yelp = {
apiKey: string;
};
/**
* All Categories
* This endpoint returns all Yelp business categories across all locales by default.
Include the "locale" parameter to filter to only those categories available for a particular locale, and translate/localize the names of those categories.
*/
export async function main(auth: Yelp, locale: string | undefined) {
const url = new URL(`https://api.yelp.com/v3/categories`);
for (const [k, v] of [["locale", locale]]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.apiKey,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago