Hi
@Mayank Goyal,
The HTTP VBO isn't designed to use Google credential files directly. To use the Google JSON file directly you would typically leverage the Google .NET client library for the specific Google API you want to use. This is similar to the Google Sheets VBO that ships with Blue Prism, although it has you place the Client ID and Client Secret in a BP credential instead of using the JSON file.
Here's an example of using the Google Sheets .NET libraries along with a JSON auth file:
https://developers.google.com/sheets/api/quickstart/dotnetWith that said, you can always read the contents of the JSON file, pull out the client ID and client secret and use those to set the values of
Username and
Password on the HTTP VBO. You'd also need to set
Force Pre Authorization to
True I believe. Take a look at the
Webservices - OAuth2.0 VBO (it uses the HTTP VBO under the hood).
Cheers,
Eric