Sign in

Login by token

documented

Authenticate a Feng Office user by token via the Feng Office API. The public docs indicate a method named loginUserByToken and that API calls are made using the base URI /application/api/public with the specific method name in the path. Calls require an auth hash in the query string.

GET /application/api/public/loginUserByTokenAuthenticationno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "{{FENGOFFICE_API_BASE_URL}}/application/api/public/loginUserByToken" \
  -X GET \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json"