我已经尝试了很多代码来发布推文,但我没有找到任何有效的推特实现。
我尝试过 social.js - social_plus.js - alloy / social - birdhouse.js 等。
我的应用程序在以下行崩溃
correctTimestampFromSrc: function(parameterName) {
parameterName = parameterName || "oauth_timestamp";
var scripts = document.getElementsByTagName("script");
我的钛移动SDK 3.2.3 GA,我的测试平台是iOS 7.1模拟器。
提前谢谢。
答案 0 :(得分:0)
不确定这是否是您正在寻找的,但我正在使用我的这个应用。
基本上它是一个失败优雅的概念,如果用户:
`
//check to see if the user can open a test url schema
if(Ti.Platform.canOpenURL('twitter://post?message=test'))
{
//if the user can, then encode the message and open the native integration
var twitterShareText = encodeURIComponent('Your Twitter message here');
Ti.Platform.openURL('twitter://post?message=" + twitterShareText);
}else
{
//create a url for Twitter share (then open twitterShareURL in browser)
`var twitterShareURL = 'https://twitter.com/intent/tweet?';
twitterShareURL += 'text=' + encodeURIComponent('Your Twitter message here');
twitterShareURL += 'url=' + encodeURI('http://theurlthatyouwanttoshare.com'); //(optional)
}