We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214dd00 commit f55eb2eCopy full SHA for f55eb2e
README.md
@@ -292,8 +292,8 @@ public class OkHttpYoutubeClient implements YoutubeClient {
292
}
293
294
@Override
295
- public String post(String url, String body) throws TranscriptRetrievalException {
296
- RequestBody requestBody = RequestBody.create(body, MediaType.parse("application/json; charset=utf-8"));
+ public String post(String url, String json) throws TranscriptRetrievalException {
+ RequestBody requestBody = RequestBody.create(json, MediaType.parse("application/json; charset=utf-8"));
297
298
Request request = new Request.Builder()
299
.url(url)
0 commit comments