Home » Wapka Codes 2022 » Please help!!
ashique007 2 years ago |
http://wapka.org/e78e409a1f93d7d23f40cb070a582fea22205/panel/70814/363002/new/head_tags
I want to get this value
e78e409a1f93d7d23f40cb070a582fea22205
I don't know how to get this! Does anyone have any idea? I want to use the url like http://wapka.org/panel/70814/363002/new/head_tags
Ofcourse it'll not work with out that value ! So my question is how to get that value? Is it possible? I want to make a shortcut option to edit & add codes just like old wapka.mobi
comment |
Recent Comments (9)
francisco | 2 years ago |
To solve the Same-Origin Policy problem, you could build a simple PHP page - on a service like Heroku, InfinityFree.net or 000WebHost - with the following code:
<?php
// Page get.php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST');
header("Access-Control-Allow-Headers: X-Requested-With");
$token = $_GET['token'];
$page = $_GET['page'];
echo file_get_contents("https://wapka.org/$token/$page");
?>
So on your Wapka site you could use the following code:
<div id="content"></div>
<script>$.ajax({
url:'https://phpsite.com/get.php?toke=:VAR(token);&page=dashboard',
type:'GET',
success: function(data){
$('#content').html($(data).find('#collapseSites').html());
}
});
</script>
reply |
francisco | 2 years ago |
Since it is a persistent session token, you can login once, copy the token and add it to a variable, then you can create the Ajax URLs to get the content of different pages of your Wapka dashboard - Just make sure you don't log out, otherwise you'll have to copy the new token again.
reply |
ashique007 | 2 years ago |
I can but if i could just get the session value then its possible :( i tried ajax but its not working because of another domain
reply |
francisco | 2 years ago |
Sorry for the late response, but I'm afraid you can't do that. You cannot change the wapka dashboard code, you can only change the codes of your sites - note that the codes you add using the dashboard are not applied to the dashboard itself.
reply |
ashique007 | 2 years ago |
I don't understand:( can you please explain if you don't mind
I just want to use this link http://wapka.org/panel/70814/363002/new/
All i need is to get the session value. How can i get that value
reply |