0
There is a login area on this website "https://id.nintendo.net/login" and would like to know if it is possible to log in via . NET or via client using post or something like.
0
There is a login area on this website "https://id.nintendo.net/login" and would like to know if it is possible to log in via . NET or via client using post or something like.
2
What you need is to develop a web Crawler.
You can develop a Crawler in two different ways:
CasperJS
, which is made upon the PhantomJS
. Solutions of this type often emulate well what a "real" browser does, such as running Javascript, requests, AJAX, downloading images, etc. Usually these solutions are developed in Javascript.Is there any way to do on the server side?
@luckakashi both are on the server side :)
Browser other questions tagged .net server-side server-client oauth
You are not signed in. Login or sign up in order to post.
What do you really need to do besides authenticate? Specify your question better.
– anderson
After authenticating you would need to "download" the html to the server (I am developing an API), as you would need the information that is after the login area.
– luckakashi