-
Notifications
You must be signed in to change notification settings - Fork 0
/
getapi.php
54 lines (46 loc) · 1.44 KB
/
getapi.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
require('config.php');
?>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Twip 4 - Configuration</title>
<link rel="stylesheet" type="text/css" href="style.css" media="all" />
<meta name="robots" content="noindex,nofollow">
</head>
<body>
<h1><a href="index.html">Twip<sup title="Version 4">4</sup></a></h1>
<h2>Twitter API Proxy, redefined.</h2>
<div>
<h3>你的 API Proxy 地址</h3>
<p>
<input readonly="readonly" type="text" value="<?php echo isset($_GET['api']) ? $_GET['api'] : BASE_URL.'t/'; ?>" onmouseover="this.focus()" onfocus="this.select()" autocomplete="off" />
</p>
<?php if(isset($_GET['api'])) { ?>
<h3>你的 Image Proxy 地址</h3>
<p>
<input readonly="readonly" type="text" value="<?php echo str_replace('/o/','/i/',$_GET['api']); ?>" onmouseover="this.focus()" onfocus="this.select()" autocomplete="off" />
</p>
<?php } ?>
<p>
友情提醒:请不要随意泄漏你的 API 地址。Twip 默认会保护你的 API 地址不被搜索引擎爬取。
</p>
<?php
if(isset($_GET['api'])){
?>
<p> <!--O mode only-->
注意: O 模式下每次提交认证都会生成新的随机 API 地址!
</p>
<?php
}
?>
<p class="clearfix">
<a class="button" href="index.html">返回首页</a>
</p>
</div>
<div id="footer">
2013 © <a href="https://github.com/twip/twip">Twip Project</a>
</div>
</body>
</html>