如何使用TwitterOAuth PHP编写推文?

时间:2018-08-22 10:25:54

标签: php twitter oauth oauth-2.0 twitter-oauth

我想用 this.storeServiceForm.get('promotionStartDate').valueChanges.subscribe(value => { this.storeServiceForm.controls['promotionStartDate'].updateValueAndValidity({ emitEvent: false }); this.storeServiceForm.controls['promotionEndDate'].updateValueAndValidity(); this.storeServiceForm.controls['promotionPrice'].updateValueAndValidity(); }); this.storeServiceForm.get('promotionEndDate').valueChanges.subscribe(value => { this.storeServiceForm.controls['promotionStartDate'].updateValueAndValidity(); this.storeServiceForm.controls['promotionEndDate'].updateValueAndValidity({ emitEvent: false }); this.storeServiceForm.controls['promotionPrice'].updateValueAndValidity(); }); this.storeServiceForm.get('promotionPrice').valueChanges.subscribe(value => { this.storeServiceForm.controls['promotionStartDate'].updateValueAndValidity(); this.storeServiceForm.controls['promotionEndDate'].updateValueAndValidity(); this.storeServiceForm.controls['promotionPrice'].updateValueAndValidity({ emitEvent: false }); }); 和我的应用程序Twitter一起写一条推文。 我的代码可以写鸣叫,但是有一个错误(我不知道在哪里)破坏了我的代码。 也许我使用的是旧版本的 twitterOAuth

twitterOAuth

代码在如果声明和最后的** print_r('OK');

内写推文,但不要写My code is this: // OAuth To Twitter require_once 'files-notifiche-twitter/twitteroauth.php'; // Do NOT Share (sono i token) define("CONSUMER_KEY", "xxx"); define("CONSUMER_SECRET", "xxx"); define("OAUTH_TOKEN", "xxx"); define("OAUTH_SECRET", "xxx"); // Post To Twitter $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, OAUTH_TOKEN, OAUTH_SECRET); $content = $connection->get('account/verify_credentials'); $connection->post('statuses/update', array('status' => 'tweet')); if ($connection->getLastHttpCode() != 200) { print_r('<br>Error try again<br>'); } else{ print_r('<br>Notifica twitter funziona<br>'); } print_r('OK');

如果这个代码正确,您能告诉我吗? 在哪里可以下载print_r的正确版本?

在我的twitterOAuth文件中,有

twitterOAuth

也许是 require_once('OAuth.php'); 了...

非常感谢,对不起我的英语

0 个答案:

没有答案