So a client has asked me if I could build an interface where they would have their account and from there be able to link and see all there other accounts on other sites, like sportsbook.com, etc…
I would create this in php and got somewhat of an idea. If you know a great way that I could go off this please let me know!
In principle this is possible by simulating the form post of the login screen for the other sites. For example, if you wanted to login to
mysite.com, you would first look at the login page for that site. It will probably have something like this:The key pieces of information here are:
actiontag (mysite.com/logincheck.aspx), which is the page handling the login requesttheusername)secretpassword)Simulating a form request is relatively easy. You can build your own copy of the form that posts directly to the site with the client’s correct credentials pre-filled in (behind their initial password login), or use the concepts from this question, for example. You could do it as a tabbed interface with iframes or something to that effect.