Member since
09-04-2017
1
Post
0
Kudos Received
0
Solutions
09-04-2017
11:52 AM
Hi, I'm trying to pull data from a post API that expects
authentication and request parameters as part of the request body. I
guess, what they do is access the data from the post variables. What I have seen so far in documentation is how to send POST via
JSON or headers. In my case, no headers just the post body parameters. call to this api via curl --data option works just fine. curl --data "username=xyz&password=xyz&function=xyz" http://example.com/api.php How can I replicate above call in nifi? I have tried multiple methods without success. Latest has been
Generate flow file, update attributes (where i fill in the parameters),
invoke http then putfile. But I'm getting errors - the api is not abe to authenticate my request. Thanks
... View more