Skip to content
Advertisement

How can I get Certificate from HTTPS request?

I am working with Google Assistant / Dialogflow. I want to check all incoming requests. I need to get and verify a certificate. I try to get a certificate from a header or param from HttpRequestServlet but nothing to get. How can I do this?

Advertisement

Answer

I’m assuming that you want to validate incoming Dialogflow requests in your Java webhook server.

Take a look at this. You should use Mutual TLS authentication:

To request mTLS:

  • Prepare your webhook HTTPS server to request the client certificate during the TLS handshake.
  • Your webhook server should verify the client certificate upon receiving it.
  • Install a certificate chain for your webhook server, which can be mutually trusted by both client and server. You should use Google Trust Services CA 1O1 (GTS CA 1O1). GTS CA 1O1 uses the GlobalSign R2 root (GS Root R2), which is owned and controlled by Google Trust Services. You can download it from: https://pki.goog/repository/

The documentation also provides a demo about how to do this on NodeJS server. In Java, it depends on what you’re using but the process is the same. So take a look a these links about setting up mTLS on Java servers and you can use the NodeJS server demo as reference.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement