В моем приложении для Android я пытался отправить запрос POST в Google Forms, но возвращается ошибка 400:
400 https://docs.google.com/forms/d/e/[form-id-number-here]/formResponse (114002ms)
content-type: text/html; charset=utf-8
x-robots-tag: noindex, nofollow, nosnippet
cache-control: no-cache, no-store, max-age=0, must-revalidate
pragma: no-cache
expires: Mon, 01 Jan 1990 00:00:00 GMT
date: Sun, 17 Mar 2019 05:03:05 GMT
p3p: CP="This is not a P3P policy! See g.co/p3phelp for more info."
p3p: CP="This is not a P3P policy! See g.co/p3phelp for more info."
x-chromium-appcache-fallback-override: disallow-fallback
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
server: GSE
....
Вот мой код:
interface FormApi {
@Headers("Content-Type: application/json", "Accept: text/html", "Cache-Control: no-cache")
@POST("{key}/formResponse")
fun formResponseJson(@Path("key") key: String, @Body json: JsonObject): Call<ResponseBody>
}
Использование:
val gson = GsonBuilder().setLenient().create()
val client = OkHttpClient.Builder()
.readTimeout(timeout.toLong(), TimeUnit.SECONDS)
.connectTimeout(timeout.toLong(), TimeUnit.SECONDS)
.build()
val retrofit = Retrofit.Builder()
.baseUrl(url)
.addConverterFactory(GsonConverterFactory.create(gson))
.client(client)
.build()
val api = retrofit.create(FormApi::class.java)
val json = dataObj.toJson()
val call = api.formResponseJson(key, json)
call.enqueue(CallBackResult(resultReceiver))
Обратите внимание, что объект json имеет формат значения ключа, например: {"entry.xxxxx1": "Test"}
У кого-нибудь есть идея, почему возвращается этот код ошибки? Кто-нибудь успешно отправил POST в форму Google в Android?
Спасибо.