我在发布到MySpace链接时遇到了一个问题。使用PDF教程,我创建了一个简单的页面:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function GetThis(T, C, U, L)
{
var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T)
+ '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
window.open(targetUrl);
}
</script>
</head>
<body>
<a href="javascript:GetThis('An Important News Article Title',' ', 'http://www.newssite.com/article.php?id=123',
'3')">
<img src="http://cms.myspacecdn.com/cms/post_myspace_icon.gif" border="0" alt="Post to MySpace!" />
Share on MySpace get method!
</a>
<form id="myspacepostto" method="post" action="http://www.myspace.com/index.cfm?fuseaction=postto"
target="_blank">
<input type="hidden" name="t" value="An Important News Article Title" />
<input type="hidden" name="c" value="" />
<input type="hidden" name="u" value="http://www.newssite.com/article.php?id=123" />
<input type="hidden" name="l" value="3" />
<a href="#" onclick="document.getElementById('myspacepostto').submit();return false;">
<img src="http://cms.myspacecdn.com/cms/post_myspace_icon.gif" border="0" alt="Post to MySpace!" />
Share on MySpace post method!
</a>
</form>
</body>
</html>这里有一个简单的链接和形式的例子。但是当我使用表单链接时,请求花费的时间太长,并且MySpace没有响应。如果我使用简单链接将内容发布到MySpace,那么我会得到一个404错误页面。那么如何在MySpace上发布内容呢?
发布于 2014-04-22 20:59:22
尝试此URL http://mashable.com/2008/02/13/post-to-myspace/
这是来自他们的网站:
Actual Url: http://www.myspace.com/Modules/PostTo/Pages/?t=MySpace%20Post%20To%20Feature%20Example&c=%3Cp%3EHTML%20content%20to%20post%20goes%20here%20%3Ci%3E(e.g.%20text%2C%20images%2C%20objects%2C%20etc.)%3C%2Fi%3E%3C%2Fp%3E&u=http%3A%2F%2Fwww.myspace.com&l=3不要删除任何参数(T、C、U、L) -每个参数都是必需的。但是,您不需要在任何字段中放入内容;它们可以保留为空。
https://stackoverflow.com/questions/17697347
复制相似问题