{"id":21538264,"url":"https://github.com/lanius412/yahooapi-gas","last_synced_at":"2026-04-24T11:34:35.186Z","repository":{"id":162820856,"uuid":"505102446","full_name":"lanius412/YahooAPI-GAS","owner":"lanius412","description":"Yahoo API Library for Google Apps Script","archived":false,"fork":false,"pushed_at":"2022-06-19T13:59:42.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T20:55:07.461Z","etag":null,"topics":["clasp","google-apps-script","typescript","yahoo-api"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lanius412.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-19T12:23:35.000Z","updated_at":"2022-06-19T16:03:07.000Z","dependencies_parsed_at":"2023-05-19T18:30:49.944Z","dependency_job_id":null,"html_url":"https://github.com/lanius412/YahooAPI-GAS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lanius412/YahooAPI-GAS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lanius412%2FYahooAPI-GAS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lanius412%2FYahooAPI-GAS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lanius412%2FYahooAPI-GAS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lanius412%2FYahooAPI-GAS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lanius412","download_url":"https://codeload.github.com/lanius412/YahooAPI-GAS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lanius412%2FYahooAPI-GAS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262056781,"owners_count":23251744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clasp","google-apps-script","typescript","yahoo-api"],"created_at":"2024-11-24T04:11:30.731Z","updated_at":"2026-04-24T11:34:30.145Z","avatar_url":"https://github.com/lanius412.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YahooAPI-GAS\nYahoo API Library for Google Apps Script\n\n## Script ID\n```\n1hN6EDYP8vLBvUstN03bC82KagD1XkPp9DyQRv8BWhRg33u0ixHr6GHwz\n```\n\n## Usage\n1. Get App ID (Client ID) from [Yahoo Developer](https://developer.yahoo.co.jp/start/)\n2. Set App ID to Script Property { 'APP_ID' } \n```javascript\n  const APP_ID = PropertiesService.getScriptProperties().getProperty('APP_ID');\n\n  const shoppingClient = newShoppingClient(APP_ID);\n\n  const param = {\n    query: 'ネッシー',\n    in_stock: true\n  };\n  const result = shoppingClient.itemSearch(param);\n  result.hits.forEach(item =\u003e {\n    console.log(`Title: ${item.name}\\nPrice: ${item.price}\\nURL: ${item.url}`);\n  })\n```\n\n## Details\n_All method return JSON response_\n* newShoppingClient\n  * [itemSearch](https://developer.yahoo.co.jp/webapi/shopping/shopping/v3/itemsearch.html) \n  * [categoryRanking](https://developer.yahoo.co.jp/webapi/shopping/v2/categoryRanking.html)\n  * [categorySearch](https://developer.yahoo.co.jp/webapi/shopping/shopping/v1/categorysearch.html)\n  * [itemLookup](https://developer.yahoo.co.jp/webapi/shopping/shopping/v1/itemlookup.html)\n  * [queryRanking](https://developer.yahoo.co.jp/webapi/shopping/v2/queryranking.html)\n  * [shopCampaignSearch](https://developer.yahoo.co.jp/webapi/shopping/v2/shopCampaignSearch.html)\n  * [reviewSearch](https://developer.yahoo.co.jp/webapi/shopping/shopping/v1/reviewsearch.html)\n* newMapClient\n  * [localSearch](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/localsearch.html)\n  * [geoCoder](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/geocoder.html)\n  * [reverseGeoCoder](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/reversegeocoder.html)\n  * [weather](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/weather.html)\n  * [zipCodeSearch](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/zipcodesearch.html)\n  * [placeinfo](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/placeinfo.html)\n  * [addressDirectory](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/addressdirectory.html)\n  * [building](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/buildingSearch.html)\n  * [contentsGeoCoder](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/contentsgeocoder.html)\n  * [shapeSearch](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/spatialSearch.html)\n  * [distance](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/distance.html)\n  * [datumConvert](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/datum.html)\n  * [altitude](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/altitude.html)\n  * [cassetteSearch](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/cassetteSearch.html)\n* newTextAnalyzerClient\n  * [charConvert](https://developer.yahoo.co.jp/webapi/jlp/jim/v2/conversion.html)\n  * [ruby](https://developer.yahoo.co.jp/webapi/jlp/furigana/v2/furigana.html)\n  * [proofReading](https://developer.yahoo.co.jp/webapi/jlp/kousei/v2/kousei.html)\n  * [dependencies](https://developer.yahoo.co.jp/webapi/jlp/da/v2/parse.html)\n  * [keyphrase](https://developer.yahoo.co.jp/webapi/jlp/keyphrase/v2/extract.html)\n  * [naturalLangAnalyze](https://developer.yahoo.co.jp/webapi/jlp/nlu/v1/index.html)\n* newJobInfoClient\n  * [jobInfo](https://developer.yahoo.co.jp/webapi/job/v1/jobinfo.html)\n  * [companyInfo](https://developer.yahoo.co.jp/webapi/job/v1/company.html)\n  * [townInfo](https://developer.yahoo.co.jp/webapi/job/v1/towninfo.html)\n\n## TODO\n* [Morphological Analysis](https://developer.yahoo.co.jp/webapi/jlp/ma/v1/parse.html) API can only support XML resposne yet.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flanius412%2Fyahooapi-gas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flanius412%2Fyahooapi-gas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flanius412%2Fyahooapi-gas/lists"}