Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.27 KB

File metadata and controls

41 lines (25 loc) · 1.27 KB

AuthService

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

AuthenticateAsync

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);