//native
type Botify = {
token: string
}
/**
* Get urls aggs
* Query aggregator. It accepts multiple queries and dispatches them.
*/
export async function main(
auth: Botify,
username: string,
project_slug: string,
analysis_slug: string,
area: string | undefined,
previous_crawl: string | undefined
) {
const url = new URL(
`https://api.botify.com/analyses/${username}/${project_slug}/${analysis_slug}/urls/aggs`
)
for (const [k, v] of [
['area', area],
['previous_crawl', previous_crawl]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'POST',
headers: {
Authorization: 'Token ' + auth.token
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 2 days ago