TsubuyakiSoup.as 認証できない不具合。こんな感じにすると直るよ。API1.1 未対応。
TsubuyakiSoup.as 認証できない不具合。こんな感じにすると直るよ。API1.1 未対応。
#deffunc RESTAPI var p1, var p2, int p3, str p4, array p5// ~略~repeat notemaxnoteget API_BufStr, cntAPI_BufStr = getpath(API_BufStr, 16)API_buf = instr(API_BufStr, 0, getpath("Status: ", 16)) //ステータスコードif (API_Buf != -1) : API_statcode = int(strmid(API_BufStr, API_buf+8, 3))API_buf = instr(API_BufStr, 0, getpath("Content-Length: ", 16)) //長さif (API_Buf != -1) : API_p1Length = int(strmid(API_BufStr, -1, strlen(API_BufStr)-API_buf+16))API_buf = instr(API_BufStr, 0, getpath("X-RateLimit-Limit: ", 16)) //60分間にAPIを実行できる回数if (API_Buf != -1) : TS_RateLimit(0) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+19)))API_buf = instr(API_BufStr, 0, getpath("X-RateLimit-Remaining: ", 16)) //APIを実行できる残り回数if (API_Buf != -1) : TS_RateLimit(1) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+23)))API_buf = instr(API_BufStr, 0, getpath("X-RateLimit-Reset: ", 16)) //リセットする時間if (API_Buf != -1) : TS_RateLimit(2) = int(strmid(API_BufStr, -1, strlen(API_BufStr)-(API_buf+19)))loop// ~略~