Domanda

I'm trying to use postForm to log in to a website. The form requires a field called "next". postForm takes the form fields as a list called .params. But R cannot have a list where one of the names is "next":

> list(next="hi")
Error: unexpected '=' in "list(next="

Any suggestions?

È stato utile?

Soluzione

Did you try quotes:

list('next'="hi")
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top