Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vk4xmpp.html « js - github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f06699cf2ef6aff08bd75d61598eae93dbada675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Redirect...</title>
</head>
<!-- (c) simpleApps, 2013 — 2014 -->

<body>
<h1 style="text-align: center">
    Wait until you'll be redirected...
</h1>
<p style="text-align: center">
    If redirect don&apos;t work - click
    <a href="https://oauth.vk.com/authorize?scope=69638&redirect_uri=https%3A%2F%2Foauth.vk.com%2Fblank.html&display=mobile&client_id=3789129&response_type=token">
        here
    </a>.
</p>
<script type="text/javascript">
    var scope = 69638;
    var str_start = "https://oauth.vk.com/authorize?scope=";
    var str_end = "&redirect_uri=https%3A%2F%2Foauth.vk.com%2Fblank.html&display=mobile&client_id=3789129&response_type=token";
    if (window.location.hash) {
        scope = location.hash;
        scope = scope.substring(1, scope.length);
    }
    window.location.replace(str_start + scope.toString() + str_end);
</script>
</body>
</html>