Skip to main content

AuthService

A list of all methods in the AuthService service. Click on the method name to view detailed information about that method.

MethodsDescription
AuthenticateAsyncAuthenticate to retrieve the HUE application key. Requires to go and press the button on the bridge

AuthenticateAsync

Authenticate to retrieve the HUE application key. Requires to go and press the button on the bridge

  • HTTP Method: POST
  • Endpoint: /api

Parameters

NameTypeRequiredDescription
inputAuthenticateRequestThe request body.

Return Type

List<Response_>

Example Usage Code Snippet

using OpenHue;
using OpenHue.Models;

var client = new OpenHueClient();

var input = new AuthenticateRequest();

var response = await client.Auth.AuthenticateAsync(input);

Console.WriteLine(response);

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →