It looks like you're new here. If you want to get involved, click one of these buttons!
"Authorization: Basic "
"BASE64 Encoded String"
API_KEY:ACCESS_TOKEN
"status": "error",
"message": "unknown Authorization scheme",
"data": null,
"error_type": "InputException"
}
yes have the permission
Can you DM the API key, being used for this product?
Is it not supposed to be base64 encoded ?
FYI @rakeshr
You cannot use raw value like My_api_key:User_access_token
-H "Authorization: Basic BASE64_ENCODED_VALUE"
curl "https://api.kite.trade/portfolio/holdings" \
-H "X-Kite-Version: 3" \
-H "Authorization: Basic BASE64_OF(API_KEY:ACCESS_TOKEN)"
Please don't forget to have exactly same format
"Authorization: Basic "
and then after that"BASE64 Encoded String"
You can use https://www.base64encode.org/ website for for base 64 conversion of your I have tested it and it is working