我想构建一个应用程序来查询我的Yahoo!中的数据。幻想联盟,但不能通过三足OAuth身份验证,并希望有人可以给我一个快速演示,或指向我相关的教程。
我愿意使用NodeJS,Python或PHP。
我已经注册了API并获得了消费者密钥和消费者密钥。
Their documentation包含两个PHP示例(我无法开始工作)和参考OAuth.net's list of libaries。
但是,让我们来看看Python。仅rauth documentation列出 第一站,我怎么能完成另外两条腿?
from rauth import OAuth2Service
yahoo = OAuth2Service(
client_id='mykey',
client_secret='mysecret',
name='yahoo',
authorize_url='https://api.login.yahoo.com/oauth/v2/request_auth',
access_token_url='https://api.login.yahoo.com/oauth/v2/get_token',
base_url='https://api.login.yahoo.com/oauth/v2/')
url = yahoo.get_authorize_url()
我在GitHub.com上发现的几乎所有示例都已存在多年,并且存在兼容性问题,尽管yahoofantasysandbox似乎已经存在。
This tutorial建议使用fantasy-sports,但我没有看到很多有关实施或示例的详细信息。
有人可以指出我正确的方向或给我一个工作代码的演示吗?
答案 0 :(得分:2)
一年后,我自己做到了。
TL; DR:如果要访问Yahoo Fantasy API,只需使用我创建的NodeJS工具即可:https://github.com/edwarddistel/yahoo-fantasy-baseball-reader
但是,如果要使用NodeJS或PHP创建自己的应用程序,请按以下步骤操作:
转到https://developer.yahoo.com/apps/create/,获得Consumer Key
和Consumer Secret
将Consumer Key
放入https://api.login.yahoo.com/oauth2/request_auth?client_id=YOUR-CONSUMER-KEY-GOES-HERE&redirect_uri=oob&response_type=code&language=en-us并同意允许访问,然后获取授权码
构造Auth头,它是CONSUMER_KEY:CONSUMER_SECRET的Base64编码:
const AUTH_HEADER = Buffer.from(`${CONSUMER_KEY}:${CONSUMER_SECRET}`, `binary`).toString(`base64`);
function getInitialAuthorization () {
return axios({
url: `https://api.login.yahoo.com/oauth2/get_token`,
method: 'post',
headers: {
'Authorization': `Basic ${AUTH_HEADER}`,
'Content-Type': 'application/x-www-form-urlencoded',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',
},
data: qs.stringify({
client_id: CONSUMER_KEY,
client_secret: CONSUMER_SECRET,
redirect_uri: 'oob',
code: YAHOO_AUTH_CODE,
grant_type: 'authorization_code'
}),
timeout: 1000,
}).catch((err) => {
console.error(`Error in getInitialAuthorization(): ${err}`);
});
}
执行该响应并将其写入文件。每使用60分钟,您将需要这些凭据来重新授权该应用程序。
向Yahoo API发出正常的HTTP请求。检查响应,如果授权令牌已过期,请使用稍微不同的一组参数重新授权:
function refreshAuthorizationToken (token) {
return axios({
url: `https://api.login.yahoo.com/oauth2/get_token`,
method: 'post',
headers: {
'Authorization': `Basic ${AUTH_HEADER}`,
'Content-Type': 'application/x-www-form-urlencoded',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',
},
data: qs.stringify({
redirect_uri: 'oob',
grant_type: 'refresh_token',
refresh_token: token
}),
timeout: 10000,
}).catch((err) => {
console.error(`Error in refreshAuthorizationToken(): ${err}`);
});
}
// Hit the Yahoo Fantasy API
async function makeAPIrequest (url) {
let response;
try {
response = await axios({
url: url,
method: 'get',
headers: {
'Authorization': `Bearer ${CREDENTIALS.access_token}`,
'Content-Type': 'application/x-www-form-urlencoded',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',
},
timeout: 10000,
});
const jsonData = JSON.parse(parser.toJson(response.data));
return jsonData;
} catch (err) {
if (err.response.data && err.response.data.error && err.response.data.error.description && err.response.data.error.description.includes("token_expired")) {
const newToken = await refreshAuthorizationToken(CREDENTIALS.refresh_token);
if (newToken && newToken.data && newToken.data.access_token) {
CREDENTIALS = newToken.data;
// Just a wrapper for fs.writeFile
writeToFile(JSON.stringify(newToken.data), AUTH_FILE, 'w');
return makeAPIrequest(url, newToken.data.access_token, newToken.data.refresh_token);
}
} else {
console.error(`Error with credentials in makeAPIrequest()/refreshAuthorizationToken(): ${err}`);
process.exit();
}
}
}
以下是PHP中的示例:
function getInitialAuthorizationToken() {
$ch = curl_init();
$post_values = [
"client_id" => $GLOBALS['consumer_key'],
"client_secret" => $GLOBALS['consumer_secret'],
"redirect_uri" => "oob",
"code" => $GLOBALS['initial_auth_code'],
"grant_type" => "authorization_code"
];
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $GLOBALS['auth_endpoint'],
CURLOPT_POST => 1,
CURLOPT_HTTPHEADER => array(
'Authorization: Basic ' . $GLOBALS['auth_header'],
'Content-Type: application/x-www-form-urlencoded',
'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),
CURLOPT_POSTFIELDS => http_build_query($post_values)
));
$answer = curl_exec($ch);
if (isset($answer)) writeToFile($answer);
if (!isset($access_token)) {
echo "Error!";
die;
}
else {
return $token;
}
}
希望这对其他人有帮助。