我在发布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?

最佳答案

试试这个网址
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)–每个参数都是必需的。但是,您无需在任何字段中放置内容;它们可以保留为空。”

09-17 06:27