@timiade Can you please explain what you want to integrate?
Integrate Google Meet, Zoom and Microsoft Teams
How can i integrate Google Meet, Zoom and Microsoft teams in a project in laravel.
@christian-qode I want users to choose how they want to meet their customers either through Google Meet, Zoom or Microsoft Teams. Like Calendly
@TimiAde Alright, you should start reading the documentation of the different tools on how to integrate it with your application. Based on the choice of your customer in the front-end, you should use one of the 'connectors' you've created.
How can i integrate Google Meet, Zoom and Microsoft teams in a project in laravel.
@timiade By writing some code.
This forum isn’t a place to post your client requirements and have someone give you step-by-step instructions on how to fulfil them.
Start putting some effort in yourself because you’re just opening question and question with this one-line descriptions where you’ve clearly not attempted anything yourself first.
@martinbean ok
@martinbean i have started the Google Meet to some extents Sir
I used this package https://github.com/pulkitjalan/google-apiclient
Route::get('/client', function () {
$googleClient = Google::getClient();
dd($googleClient);
});
my result was
Google\Client {#516 ▼ // routes/web.php:28
-auth: null
-http: null
-cache: null
-token: null
-config: array:29 [▶]
-logger: null
-credentials: null
-deferExecution: false
#requestedScopes: []
}
am i on the right path. Sir
Please or to participate in this conversation.