How do you POST data to a multi-page google form?

三世轮回 提交于 2019-12-08 12:49:26

You are posting to a URL that only has 2 of the key value pairs:

// On page #1.
keyValue.Add("entry.843521592", "Option 1");
keyValue.Add("entry.901429584", "Test Right Now");

// On page #2.
keyValue.Add("entry.347619935", "Test Page 2");

The value for the second page cannot be added as the question does not exist when you post to the first page.

Add this key in your NameValueCollection.

keyValue.Add("pageHistory", "0,1,2");//Comma separated page indexes (this is for 3 pages`enter code here`)

capture all the "entry.#" and then don't foget the pageHistory with total number of pages starting from 0 (like Puneet pointed out)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!