Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is an expanding list of API endpoints to verify your ONAP deployment - ideally we would post a postman config and environment file.

Username / Password / Authorization Token

(I didn't realize that we could reverse engineer the password/username combination from the encoded <alphanumeric_token> in the header key:value = Authorization:Basic <alphanumeric_token>.  Again thanks Yves - use a public site like https://www.base64decode.org/

For example for MSO we take the token SW5mcmFQb3J0YWxDbGllbnQ6cGFzc3dvcmQxJA== and get InfraPortalClient:password1$ which is defined throughout the ONAP codebase in for example the VID DockerFile.



Postman/Curl REST calls

Prerequisites

...

For programmatic JAX-RS 2.0 clients add the following

// fix java.security.cert.CertificateException: No subject alternative names present
HostnameVerifier verifier = new HostnameVerifier() {
public boolean verify(String hostname, SSLSession sslSession) {
return true; // TODO: security breach
}};


MSO VM

WIP: work in progress

...