今日 (虫垂切除後) は仕事に行けませんが、それでも PowerShell のスキルを磨きたいので、World of Warcraft API にアクセスしてオークション ハウスのデータを取り出そうと決めました。
$apiKey = "myapikey"
$serverName = "MyServer"
$webAddress = "https://us.api.battle.net/wow/auction/data/"
$url = $webAddress + $serverName + "?apikey=" + $apiKey
$response = Invoke-RestMethod -Uri $url -ContentType "application/json"
$aucURL = $response.files.url
$aucTime = $response.files.lastModified
$response = Invoke-RestMethod -Uri $aucURL
$aucData = $response.auctions #Always returns blank
私はこの時点に到達し、以下のようなデータの膨大なリストを取得します。私の人生では、オークション データにアクセスできないようです。
{
"realms": [
{"name":"MyServer","slug":"MyServer"}],
"auctions": [
{"auc":723774847,"item":109167,"owner":"Laddypally","bid":369550,"buyout":389000,"quantity":1,"timeLeft":"VERY_LONG","rand":0,"seed":0,"context":1},
{"auc":724234542,"item":2996,"owner":"Mazramtaim","bid":760000,"buyout":800000,"quantity":20,"timeLeft":"VERY_LONG","rand":0,"seed":0,"context":0},
{"auc":723207271,"item":133563,"owner":"Alsalak","bid":1187500,"buyout":1250000,"quantity":5,"timeLeft":"LONG","rand":0,"seed":0,"context":0}]}
$responses.whatever を取得する私の方法は、過去に私の仕事関連の PS のもので機能しましたが、ここでは機能しませんでした。何か理由は?