Trying to get / fetch articles from another website via API Call (Connector).
Shall username and password be “under” the HTTP Basic Auth, or for Authentication to be “None or Self handled” and for username and password to be as Parameters?
Did you just put your consumer key and sercret in each field? (without the key name)? Also, in some case, you may need to use key in header instead with Authorization: Basic XXXXXXXX
Where the XXXX are base64 encoding of consumerkey:consumersecret (including : )
Yes, there are values of “Consumer key” and “Consumer secret” and then “URL”.
or
Do you mean how “key” is the “consumer_secret”, or what do you mean by “key (consumer_secret) in url”? And then do add only Shared parameters as following setup is:
Oh, your second reply, has few vague informations for me (: While I’ve added consumer key and secret in parameter now, in each field. Can’t understand the “Basic XXXXXXXX
Where the XXXX are base64 encoding of consumerkey:consumersecret (including : )”
I did a few search and the Authorization: Basic header should be accepted (and this is the recommend method). If this is not the case, this is because you didn’t base64 encode your consumerkey and secret correctly. It’s hard to know because I don’t see this part of the process in your screenshot…