0

I'm trying to access VersionOne using VersionOne.SDK.APIClient and OAuth2Client. I was able to create a client_secrets.json and stored_credentials.json

I may not be using the right version of one of VersionOne.SDK.APIClient since it does not contain this V1OAuth2APIConnector..

Any help on this would be appreciated.

Remy
  • 407
  • 3
  • 17

1 Answers1

1

The SDK is available on GitHub here. This file contains the V1OAuth2APIConnector class.

According to the source, V1OAuth2APIConnector is in the VersionOne.SDK.APIClient namespace. If you can't find it there, then you're using the wrong version of the SDK and need to update.

Joe Koberg
  • 25,416
  • 6
  • 48
  • 54
Corey
  • 15,524
  • 2
  • 35
  • 68
  • Where is a compiled version of this SDK that contains V1OAuth2APIConnector ? – Remy Aug 27 '13 at 16:21
  • `V1OAuth2APIConnector` is new content that hasn't been rolled into the NuGet package yet. You have to download the source from github and build the library yourself. Just do a git clone, open the project and build it. – Corey Aug 27 '13 at 22:21