cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
CAPEGA
Level III

How do I use Kerberos authentication HTTP request

Hi,

 

Does anyone knows if Kerberos autehtication can be used with the HTTP request method from jmp? I have a API I would like to connect using this authentication method.  What are the different authentication methods that can be used? Is there any cURL object in JMP (https://curl.haxx.se/)? It would be nice if you could provide an example, if available. Thank you in advance.

 

Here is a sample of a request

request_headers = AssociativeArray();
request_headers["Authorization"] = "";//Kerberos example

request = New HTTP Request(
	URL( url ), // the restAPI endpoint
	Method( "Get" ),
	Headers(request_headers),
	Query String( // define key pairs
		[["count" => limit]] // JSL associative array
	)
);
12 REPLIES 12
sheila_loring
Staff (Retired)

Re: How do I use Kerberos authentication HTTP request

@Chris_Rodrigues, please accept my apologies. I will make sure this information is added to the JMP 16.1 documentation.

Re: How do I use Kerberos authentication HTTP request

In JMP 17, there are now:

bryan_boone_0-1722292002772.png

 

UersK
Level III

Re: How do I use Kerberos authentication HTTP request

Thanks!

Recommended Articles