我管理了一个小的php脚本,该脚本将eBay产品搜索并转换为properting eBay链接。
它是这样的:
- 用户搜索例如:
ocz vertex
- 单击"提交",然后以以下格式获取结果
(无法在OCZ和顶点单词之间生成的链接中修复该空间(
现在,结果很好,但是我想使用其API通过bitly.com帐户缩短它。
基本上,我希望它生成并将完整的eBay链接结果转换为small bitly.com链接(例如
这个过程会这样:
- 用户搜索术语,例如
ocz vertex
- 单击"提交"
- 获取eBay.to短链接(当真实过程在后台时,转换为rover.ebay.com地址,然后转换为eBay.to使用我的bitly.com凭据(
我发现了这一点,尤其是那个,但不明白我如何将结果作为一个新的咬合转换。
这是PHP代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="css/screen.css">
<style type="text/css">
body{
margin:0px;
font-size:0.7em;
font-family:trebuchet ms;
color:#222;
}
#mainContainer{
width:840px;
margin:5px;
}
table,tr,td{
vertical-align:top;
}
.textInput{
width:300px;
}
html{
margin:0px;
}
.formButton{
width:75px;
}
textarea,input,select{
font-family:helvetica;
}
i{
font-size:0.9em;
}
</style>
<script language="Javascript">
<!--
var copytoclip=1
function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&©toclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",1800)
}
}
//-->
</script>
</head>
<table width="80%" height="100px" align="center" style="margin:0 auto"><tr><td align="center">
<h2>Link Generator Online</h2>
</td><tr></table>
<table width="80%" align="center" style="margin:0 auto"><tr><td align="center">
</div>
</td><td valign="top">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<br>
URL<br>
<input type=text style="font-size: 13px; font-family: tahoma,arial; font-weight: bold; color: #000000; BORDER: #555 1px solid ; BACKGROUND-COLOR: #FFF" input name="url" size="20">
<br>
<br>
<input type="SUBMIT" name="submit" VALUE="Submit">
</form>
</td></tr></table>
<?php
if(isset($_POST['submit'])){
$url = $_POST['url'];
$name=array($url);
foreach ($name as $name)
{
if (ereg("^.",$url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (ereg("<", $url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (ereg("[", $url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (ereg("'", $url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (ereg("#", $url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (ereg("`", $url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (!strlen($url)) {
echo "<br><center><font color="red">Empty Field.</center>";
Die();
}
if (strlen($url) > 100) {
echo "<br><center><font color="red">The field cannot contain more than 150 characters.</center>";
Die();
}
}
?>
<br>
<center>
<form name="vini">
<a class="highlighttext" href="javascript:HighlightAll('vini.select1')">Select All</a><br>
<textarea name="select1" rows=3 cols=75 style="font-family:tahoma;color:#555;border:1px dashed #ccc">
http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=10&pub=5575165347&toolid=10001&campid=5337851510&customid=&icep_uq=<?php echo $url ?>&icep_sellerId=&icep_ex_kw=&icep_sortBy=15&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg
</textarea>
<br>
</form>
<?php
}
?>
</body>
</html>
请参阅 live : ebay链接生成器
我构建了一个没有外部库的小解决方案。它基本上归结为:
- 从"注册应用程序"仪表板或OAuth API 中获取API键
- 使用令牌和URL 向
/v3/shorten
API端点提出请求第一步:获取令牌
您只需要一次。Bitly的文档列出了一些示例,您可以使用卷发进行操作,我认为这是最简单的方法。您也可以使用PHP进行。只需提出此帖子请求(从此处获取(:
curl -u "username:password" -X POST "https://api-ssl.bitly.com/oauth/access_token"
结果是这样:
e663e30818201d28dd07803e57333bed4f15803a
那是您的令牌。
第二步:提出请求
将令牌和URL编码的URL插入http请求到/v3/shorten
端点:
<?php
$ebay_url = "http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=10&pub=5575165347&toolid=10001&campid=5337851510&customid=&icep_uq=ocz%20vertex&icep_sellerId=&icep_ex_kw=&icep_sortBy=15&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg"
$token = "e663e30818201d28dd07803e57333bed4f15803a"; // change this
$endpoint = "https://api-ssl.bitly.com/v3/shorten?access_token=".$token."&longUrl=".urlencode($ebay_url)."";
$result = file_get_contents($endpoint);
$json = json_decode($result, true);
$short_url = $json["data"]["url"];
echo $short_url;
?>
API调用的结果是JSON,需要解码。文档中是一个示例。此代码示例没有考虑到API超时或可能发生的其他错误(例如令牌到期,目前不是问题(。
完整的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="css/screen.css">
<style type="text/css">
body{
margin:0px;
font-size:0.7em;
font-family:trebuchet ms;
color:#222;
}
#mainContainer{
width:840px;
margin:5px;
}
table,tr,td{
vertical-align:top;
}
.textInput{
width:300px;
}
html{
margin:0px;
}
.formButton{
width:75px;
}
textarea,input,select{
font-family:helvetica;
}
i{
font-size:0.9em;
}
</style>
<script language="Javascript">
<!--
var copytoclip=1
function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&©toclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",1800)
}
}
//-->
</script>
</head>
<table width="80%" height="100px" align="center" style="margin:0 auto"><tr><td align="center">
<h2>Link Generator Online</h2>
</td><tr></table>
<table width="80%" align="center" style="margin:0 auto"><tr><td align="center">
</div>
</td><td valign="top">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<br>
Insert keywords:<br>
<input type=text style="font-size: 13px; font-family: tahoma,arial; font-weight: bold; color: #000000; BORDER: #555 1px solid ; BACKGROUND-COLOR: #FFF" input name="url" size="20">
<br>
<br>
<input type="SUBMIT" name="submit" VALUE="Submit">
</form>
</td></tr></table>
<?php
if(isset($_POST['submit'])){
$url = $_POST['url'];
$name = array($url);
foreach ($name as $name) {
if (preg_match("/^[.<[#`]/",$url)) {
echo "<br><center><font color="red">Invalid Characters.</center>";
Die();
}
if (!strlen($url)) {
echo "<br><center><font color="red">Empty Field.</center>";
Die();
}
if (strlen($url) > 100) {
echo "<br><center><font color="red">The field cannot contain more than 150 characters.</center>";
Die();
}
}
$ebay_url = "http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=10&pub=5575165347&toolid=10001&campid=5337851510&customid=&icep_uq=".urlencode($url)."&icep_sellerId=&icep_ex_kw=&icep_sortBy=15&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg";
$token = "e663e30818201d28dd07803e57333bed4f15803a";
$endpoint = "https://api-ssl.bitly.com/v3/shorten?access_token=".$token."&longUrl=".urlencode($ebay_url);
$result = file_get_contents($endpoint);
$json = json_decode($result, true);
$short_url = $json["data"]["url"];
?>
<br>
<center>
<form name="vini">
<a class="highlighttext" href="javascript:HighlightAll('vini.select1')">Select All</a><br>
<textarea name="select1" rows=3 cols=75 style="font-family:tahoma;color:#555;border:1px dashed #ccc">
<?php echo $short_url; ?>
</textarea>
<br>
</form>
<?php
}
?>
</body>
</html>
注意:我将您的ereg
调用更改为preg_match
,以兼容PHP7,并使用正则表达式缩短了if
s。我还使用了urlencode($url)
,以使空间不会破坏链接。