hey guys, ive updated the code as below but cant see where to get the logs, are you able to assist please?:
import logging logging.basicConfig(filename="Logs/newfile.log", level=logging.INFO, format='[%(asctime)s - %(levelname)s] %(message).5000s', filemode='w') logger = logging.getLogger('google.ads.googleads.client').setLevel(logging.DEBUG) client_id, client_secret, developer_token = settings.CLIENT_ID, settings.CLIENT_SECRET, settings.DEVELOPER_TOKEN credentials = oauth2.GoogleRefreshTokenClient( client_id, client_secret, login_user.refresh_token ) client = GoogleAdsClient(credentials, settings.DEVELOPER_TOKEN) click_conversion = client.get_type("ClickConversion") conversion_action_service = client.get_service("ConversionActionService") click_conversion.conversion_action = ( conversion_action_service.conversion_action_path( client_id, company.conversion_name ) ) click_conversion.gclid = deal.gclid click_conversion.conversion_value = float(deal.deal_value if deal.deal_value else 0) click_conversion.conversion_date_time = make_aware(datetime.now()).strftime('%Y%m%d %H%M%S %z') conversion_upload_service = client.get_service("ConversionUploadService") request = client.get_type("UploadClickConversionsRequest") request.customer_id = client_id request.conversions.append(click_conversion) request.partial_failure = True conversion_upload_response = ( conversion_upload_service.upload_click_conversions( request=request, ) ) uploaded_click_conversion = conversion_upload_response.results[0] print( f"Uploaded conversion that occurred at " f'"{uploaded_click_conversion.conversion_date_time}" from ' f'Google Click ID "{uploaded_click_conversion.gclid}" ' f'to "{uploaded_click_conversion.conversion_action}"' ) On Thursday, July 28, 2022 at 12:56:55 PM UTC+1 adsapi wrote: > Hi Jake, > > Thank you for the reply. I work with Yasar and allow me to assist you > here. If you mean the logging instructions for this *"required code in > python please" *that you mentioned. Here are logging instructions for our > Python > <https://developers.google.com/google-ads/api/docs/client-libs/python/logging> > Ads > API Client Libraries. However, if you mean this is the Upload Click > Conversion sample code in Python, you can refer to this document > <https://developers.google.com/google-ads/api/docs/samples/upload-offline-conversion#python> > . > > Best regards, > [image: Google Logo] > Jinky > Google Ads API Team > > > > ref:_00D1U1174p._5004Q2d2PgD:ref > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/37ce9be9-36de-4d01-b7f2-dbd2c196c49an%40googlegroups.com.