twitter bot added

This commit is contained in:
Benjamin Takats
2023-01-15 23:29:59 +01:00
parent ea05c93365
commit 05887c7daa
11 changed files with 432 additions and 15 deletions

View File

@@ -0,0 +1,41 @@
<?php
namespace App\Traits;
use App\Models\TwitterAccount;
use Illuminate\Support\Facades\Http;
trait TwitterTrait
{
public function setNewAccessToken($accountId)
{
$twitterAccount = TwitterAccount::find($accountId);
$response = Http::acceptJson()
->post('https://api.twitter.com/2/oauth2/token', [
'grant_type' => 'refresh_token',
'refresh_token' => $twitterAccount->refresh_token,
'client_id' => 'a0I1Nnp4YmMzZzdtRzFod1ZWT2c6MTpjaQ',
]);
$json = $response->json();
\Log::info($json);
TwitterAccount::find($accountId)
->update([
'token' => $json['access_token'],
'refresh_token' => $json['refresh_token'],
]);
}
public function postTweet($text)
{
$twitterAccount = TwitterAccount::find(1);
$response = Http::acceptJson()
->withToken($twitterAccount->token)
->post('https://api.twitter.com/2/tweets', [
'text' => $text,
]);
\Log::info($response->json());
}
}