ajram23
ajram23
Perhaps here is the missing code you need: @app.route('/contacts_api_token', methods=['GET']) def contacts_api(): access_token = request.headers.get('Authorization', '').split(' ')[1] refresh_token = request.headers.get('Refresh-Token') granted_scopes = request.headers.get('Granted-Scopes') if not access_token: return jsonify({'success': False, 'error':...
@clundin25 Happy friday! friendly bump!
@clundin25 There is no authorization flow in the server, just a request for refresh tokens. Given that the server ends up syncing data or updating data as mention before. The...
@clundin25 perhaps its easier to state what I want to do 1. I want the server (running locally on a container) to be able sync on be sync on behalf...
@clundin25 Curious, would it be easier to do this on email or a quick call?
@clundin25 oh well. All I am asking for is the recommended way to use your APIs in my scenario. It's as simple as that. Thanks for engaging!
@clundin25 moreover the documentation is outdated https://developers.google.com/identity/sign-in/ios/offline-access referring to libraries that have been deprecated for years. I can't seem to find a replacement in the new library either for server...
@efriis Thank you! Appreciate the approval! one quick question: Will this package be available for langchain 2.X or will it require to migrate to 3.X.
@ohmayr What code would you like? its python using the API. Here is the line that makes the update: service.people().updateContact(resourceName=resource_name, updatePersonFields=field_person_field, body=update_body_json).execute() Running into this problem multiple times today.
@ohmayr Do you need anything else?