Name of repository owner.
Name of repository.
async
(params, auths) => {
}
//See the API docs here https://developer.github.com/v3/repos/#list-contributors
const config = {
url: `https://api.github.com/repos/${params.owner}/${params.repo}/contributors`,
headers: {
Authorization: `Bearer ${auths.github.oauth_access_token}`,
},
params: {
anon : params.anon
}
}
return await require("@pipedreamhq/platform").axios(this, config)