Syncing
Syncing
Sync Call
//create a client with a null client info provider (because we don't need user context when syncing)
IInfinityClient client = new InfinityClient(new RequestManager(new InfinitySettings("https://helloworld.54proxy.com", "TestApiKey")),
new NullClientInfoProvider());
Response response = client.Sync();// Set up a InfinityClient with an Api key and a null client info (we don't need metadata about the user here)
InfinitySettings settings = new InfinitySettings("https://helloworld.54proxy.com", "TestApiKey");
IInfinityClient client = new InfinityClient(new RequestManager(settings), () -> new NullClientInfo());
Response response = client.sync();Last updated
Was this helpful?

