Возможно ли получить пользователей из Github Api по местоположению пользователей?
этот код ниже извлекает пользователей по имени:
async getUser(user) { const profileResponse = await fetch(`https://api.github.com/users/${user}?client_id=${this.client_id}&client_secrets=${this.client_secret}`); const profile = await profileResponse.json(); return { profile } }
Я сейчас работаю над Github Api Project.
Вы можете использовать API поиска пользователей Github с location поисковым термином:
location
https://api.github.com/search/users?q=location:france
Используя javascript:
var country = "france"; fetch(`https://api.github.com/search/users?q=${encodeURIComponent(`location:${country}`)}`) .then(res => res.json()) .then(data => console.log(data)) .catch(err => console.error(err));