Hey guys,
if u want your Market Place on your Browser, just add that Source on a PHP file:
Just set the Cookies and Browser Informationen.
But u can use what ever you want for your Browser.
If you dont know how to find the Cookies, just Download somethink like Fiddler4 (easy way).
Start Fiddler4 (from Beginning of the Start, Fiddler4 Starts Logging everythink on your Network), Start Blade and Soul and go to your Market Place (F5).
Since its Open, switch to Fiddler4 and search the URL: [Only registered and activated users can see links. Click Here To Register...]
If you found it, just rightclick that URL and Select: Safe -> Selected Session -> As Text
Safe the file where ever you want and Open it.
There u see the Part "Cookie:", just Copy the Line and add it on the Cookie Line on your Code.
Just like that:
If ur done, just safe the file, Upload (or move it) on a Webspace with PHP.
Visit that .php file, and ur done.
You can also set ur own style of the market (preg_match_all or somethink like that).
And you can make it Public on your Website.
Edit: Dont make your GPVLU Public! (MD5 Username, Password etc.)
Any Questions?
if u want your Market Place on your Browser, just add that Source on a PHP file:
PHP Code:
<?php
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
define ('ServiceCore', 'http://eu-bnsmarket.ncsoft.com/bns/bidder/home.web?npc=false');
$path = $_GET['service'];
$url = ServiceCore.$path;
$session = curl_init($url);
if ($_GET['service']){
$postvars = '';
foreach($_GET as $key=>$val) {
if($key!='service') {
$postvars.="$key=$val&";
}
}
curl_setopt ($session, CURLOPT_POST, true);
curl_setopt ($session, CURLOPT_POSTFIELDS, $postvars);
}
curl_setopt($session, CURLOPT_COOKIE, "COOKIES HERE");
curl_setopt($session, CURLOPT_USERAGENT, "BROWSER INFO HERE");
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
curl_setopt($session, CURLOPT_FOLLOWLOCATION, true);
$json = curl_exec($session);
echo $json;
curl_close($session);
?>
But u can use what ever you want for your Browser.
PHP Code:
curl_setopt($session, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
Start Fiddler4 (from Beginning of the Start, Fiddler4 Starts Logging everythink on your Network), Start Blade and Soul and go to your Market Place (F5).
Since its Open, switch to Fiddler4 and search the URL: [Only registered and activated users can see links. Click Here To Register...]
If you found it, just rightclick that URL and Select: Safe -> Selected Session -> As Text
Safe the file where ever you want and Open it.
There u see the Part "Cookie:", just Copy the Line and add it on the Cookie Line on your Code.
Just like that:
PHP Code:
curl_setopt($session, CURLOPT_COOKIE, "Cookie: commonWebPath=/web; localWebPath=/english/web; language=en; GPVLU=Censored; SessionIndex=1;");
Visit that .php file, and ur done.
You can also set ur own style of the market (preg_match_all or somethink like that).
And you can make it Public on your Website.
Edit: Dont make your GPVLU Public! (MD5 Username, Password etc.)
Any Questions?