아마하지 ...
야후
http://developer.yahoo.com/boss/search/boss_api_guide/codeexamples.html
먼저 당신이 자바 스크립트의 OAuth를 사용하는 방법을 파악해야하고, 어떻게 것 서버 측 언어를 사용하여 제공하는 모든 예제
JS 파일에서 사용자의 API 키를 모호하게 할 수 있습니까? 걱정할 필요가 없다면, 이것을 개인 용도로 사용하고 있다고 말할 수 있습니다. Node.JS의 코드 샘플을 확인하고 자신의 용도로 수정하십시오. 당신의 결과를 가져온 후
http://developer.yahoo.com/boss/search/boss_api_guide/codeexamples.html#oauth_js
function yahooSearch(consumerKey, consumerSecret, query, count,
callback_error_data_response){
var webSearchUrl = 'https://yboss.yahooapis.com/ysearch/web';
var finalUrl = webSearchUrl + '?' + qs.stringify({
q: query, //search keywords
format: 'json',
count: count,
});
var oa = new OAuth(webSearchUrl, webSearchUrl, consumerKey, consumerSecret, "1.0", null, "HMAC-SHA1");
oa.setClientOptions({ requestTokenHttpMethod: 'GET' });
oa.getProtectedResource(finalUrl, "GET", '','', callback_error_data_response);
}
// Use this function to make a call back. Make sure to provide the right key, secret and query for this to work correctly yahooSearch('YAHOO CONSUMER KEY GOES HERE', 'YAHOO CONSUMER SECRET GOES HERE', 'SEARCH QUERY', 10, function(error, data, response){
// enter some code here and access the results from the "data" variable in JSON format
});
이 질문에 대한 답변이 아직 없습니다. – beenjaminnn