We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is an api that pick a hero in selecting hero's phase.( /lol-champ-select/v1/session/actions/1 )
const http1PickHero = async () => { const credentials = await authenticate() let localBody = { "completed": true, "type": 'pick', "championId": '157' } const response = await createHttp1Request({ method: "PATCH", url: `/lol-champ-select/v1/session/actions/1`, body: localBody }, credentials) }
No any response, also is not an error. PATCH or POST method not response, but GET have a response.
const http2PickHero = async () => { const credentials = await authenticate() const session = await createHttpSession(credentials) let localBody = { "completed": true, "type": 'pick', "championId": '157' } const response = await createHttp2Request({ method: "PATCH", url: `/lol-champ-select/v1/session/actions/1`, body: localBody },session, credentials) session.close() }
The text was updated successfully, but these errors were encountered:
Interesting, thanks for the reporting - will investigate
Sorry, something went wrong.
Any progress on this? I encountered the same problem, no error/response was given when i called createHttp2Request with method POST.
createHttp2Request
me too
No branches or pull requests
Using createHttp1Request function there is no problem, and the following code.
But using createHttp2Request function there is problem.
The text was updated successfully, but these errors were encountered: