Or at least could anybody point me to docs about its crazy proprietary url parameters and html field name obfuscation? I can only suppose this is caused by SharePoint...
The main problem is, given a start page built with SharePoint, I can't recreate a form post with a programmative client because:
- field names vary, they are appended with a some sort of id, hash, whatever (I think session.wise? Not sure)
- tracing HTTP traffic on my side, I see the HTTP request is packed with strange parameters like
__REQUESTDIGEST
,__VIEWSTATE
, and many others
Is this an intentional protection device put up by SharePoint? Which is the underlying architecture and which objects are involved (script callbacks, ... )?
(BTW, I'm not doing anything evil, just trying to extract public government data from a website).
Thanks.