2013-07-17 13 views
1

我遇到了发布到MySpace链接的问题。使用PDF教程我创建了一个简单的页面:发布到MySpace的链接不起作用

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?

+0

我也有这个问题。我的旧链接被破坏。 – Impworks

回答

0

试试这个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)的 - 每一个需要不过,你不需要将内容放在任何字段中;它们可以留空。“