A list of all methods in the AuthService
service. Click on the method name to view detailed information about that method.
Methods | Description |
---|---|
AuthenticateAsync | Authenticate to retrieve the HUE application key. Requires to go and press the button on the bridge |
Authenticate to retrieve the HUE application key. Requires to go and press the button on the bridge
- HTTP Method:
POST
- Endpoint:
/api
Parameters
Name | Type | Required | Description |
---|---|---|---|
input | AuthenticateRequest | ❌ | The 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);