How to Access Google Local Service Ads?

This topic was automatically generated from Slack. You can find the original thread here.

Does anyone know how to tap into google local service ads? is there a separate connection for this?

It looks like you’re asking how to connect to Google Local Services Ads (LSA) via Pipedream, and whether there’s a specific integration or connection for this. ### Current Pipedream Support for Google Local Services Ads - No Pre-built Integration: As of now, there is no dedicated Pipedream integration or pre-built component specifically for Google Local Services Ads (LSA). - General Google API Support: Pipedream does support connecting to Google APIs in general. You can use the Google app integration to authenticate and make requests to any Google API endpoint, provided you have the right OAuth scopes and API access. ### How to Tap Into Google Local Services Ads 1. Check Google LSA API Availability: Google LSA is not part of the standard Google Ads API. As of 2024, LSA APIs are limited and may require special access. You should confirm you have access to the Google Local Services API. 2. Use a Custom HTTP Request in Pipedream: If you have API access, you can use a custom code step in Pipedream to call the LSA API. Authenticate using the Google OAuth connection as shown in the docs. Example Pipedream component for a generic Google API request: import { axios } from "@pipedream/platform"; export default defineComponent({ props: { google: { type: "app", app: "google", }, }, async run({ steps, $ }) { return await axios($, { url: `https://www.googleapis.com/YOUR_LSA_ENDPOINT`, headers: { Authorization: `Bearer ${this.google.$auth.oauth_access_token}`, }, }); }, }); - Replace YOUR_LSA_ENDPOINT with the actual endpoint for the LSA API you want to call. - Make sure your Google OAuth app has the correct scopes for LSA. 3. No Separate Connection: There is no separate Pipedream connection for LSA. Use the standard Google OAuth connection, but ensure your Google Cloud project is enabled for the LSA API. ### What to Do If You Need a Pre-built Integration If you want a dedicated, pre-built Pipedream integration for Google Local Services Ads, you can request it here: New Pipedream Integration RequestIf you have access to the LSA API and need help with a specific endpoint or authentication, let me know! If you need more help, visit 404: Not Found - Pipedream