Answer the question
In order to leave comments, you need to log in
How to properly integrate Google Calendar API into Symfony?
I want to connect a calendar to the project in order to create events directly from the application.
I did everything according to this article , nothing happened. Returns JSON with message key: "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup." . No matter what I've tried, nothing works.
Tell me, maybe someone has already successfully connected the calendar.
I will be very grateful!
Answer the question
In order to leave comments, you need to log in
BoShurik : The problem was in my head) It was necessary to override the build method in the GoogleBundle class in the following way:
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new CredentialsPass());
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question