Hello,
I am encountering an issue while integrating the Google Ads API into my WordPress plugin. Despite following the setup instructions and successfully installing the googleads-php-lib via Composer, I'm facing a persistent error.
**Error Description:**
When trying to initialize the Google Ads Client in my PHP code, I am receiving the following error message:
Fatal error: Uncaught Error: Class "OAuth2TokenBuilder" not found in /var/www/html/wp-content/plugins/[Your Plugin Directory]/ga-analytics-plugin.php on line [Line Number]
**Steps I Have Taken:**
1. Installed the `googleads-php-lib` using Composer in my WordPress plugin directory.
2. Included the Composer autoloader in my plugin PHP file: `require_once 'vendor/autoload.php';`
3. Attempted to use the `OAuth2TokenBuilder` class as per the library's documentation.
I suspect the issue might be related to [any specific suspicions you have, like namespace usage, file paths, etc.], but I am unable to pinpoint the exact cause. Has anyone encountered a similar issue or can provide insights on what might be going wrong?
Thank you in advance for your help!