Interface AlexaHttpRequest
- All Known Implementing Classes:
HttpServerAlexaHttpRequest
public interface AlexaHttpRequest
NOTICE: This class is forked from https://github.com/alexa/alexa-skills-kit-sdk-for-java ask-sdk-servlet-support module
Provides container for server request that should be validated.
- Since:
- 2.0.0
- Author:
- sdelamo
-
Method Summary
Modifier and TypeMethodDescriptioncom.amazon.ask.model.RequestEnvelope
byte[]
-
Method Details
-
getBaseEncoded64Signature
String getBaseEncoded64Signature()- Returns:
- the signature, base64 encoded.
-
getSigningCertificateChainUrl
String getSigningCertificateChainUrl()- Returns:
- URL for the certificate chain needed to verify the request signature.
-
getSerializedRequestEnvelope
byte[] getSerializedRequestEnvelope()- Returns:
- the request envelope, in serialized form.
-
getDeserializedRequestEnvelope
com.amazon.ask.model.RequestEnvelope getDeserializedRequestEnvelope()- Returns:
- the request envelope, in deserialized form.
-