activecollab-feather-sdk
activecollab-feather-sdk copied to clipboard
Can get issue token with cURL, Postman or SDK
Sorry if this is not the right place but I can't find help for my problem
I'm trying to connect to ActiveCollab API but it is impossible. I tried with Postman and cURL but I'm obtain the same result:
{
"type": "ValueError",
"message": "DOMDocument::loadXML(): Argument #1 ($source) must not be empty",
"code": 0
}
This is the command with the endpoint
curl -XPOST -d '[email protected]&password=XXXXXX' https://app.activecollab.com/XXXXXX/api/v1/issue-token
Any idea?
Hi,
Try wit this:
curl --request POST \
--url https://app.activecollab.com/api/v1/issue-token \
--header 'Content-Type: application/json' \
--data '{
"username": "[email protected]",
"password": "XXXXXX",
"client_name": "Test App",
"client_vendor": "Test"
}'
The above does not work as well, Same problem here, are there any solutions for that?
this works for cloud version: https://github.com/activecollab/activecollab-feather-sdk/issues/35#issuecomment-2565471377