1
我以前Anywhere從Twitter和connectButton
從中其連接我的應用程序頁面和賬戶。如何在沒有文本框的情況下更新我的狀態?只需發送一些需要新狀態字符串的請求。我發現this公報頁:更新Twitter狀態
Example Requests
POST https://api.twitter.com/1/statuses/update.json
status=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true
所以我寫了:
$.post('https://api.twitter.com/1/statuses/update.json', {status: 'test'}, function(res) {
console.log(res);
});
,並返回身份驗證錯誤。那麼,有什麼想法?