YggDore Sky Gate specification
4. Users login processing
A URL is created by interface data got in step3. The current page on user's browser changes to the URL by YggDore Sky Gate Server and so on.
<?xml version="1.0" encoding="UTF-8" ?>
<Interface>
    <Version>1.0</Version>
    <Server>https://www.yskygate.com/en/login/</Server>
    <Service key="sgu" />
    <IID key="ysls">x0iD9rqchD</IID>
    <ID key="cuXFp7QY" />
    <Password key="PbXRVDC9" challenge="KT32S9JhByEbKKYR9XHmLgkbmFmJDkPy" />
    <Query>
        <Record key="a">300</Record>
        <Record key="b">hello</Record>
    </Query>
</Interface>
The URL created from this interface is as follows.
(This sample isn't URL encoding)
https://www.yskygate.com/en/login/?
    sgu=http://www.service.com/login/?%40ysg=%40YSI%40&
    ysls=x0iD9rqchD&
    cuXFp7QY=loginID&
    PbXRVDC9=2096b02a9b10d3bb0ed9694db693d21121a58edf&
    a=300&
    b=hello ----- (2)
1 2 3 4 5 6 7