JWT Bearer Token Flow - Identity And Access Management

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Learn how you can connect Salesforce org A with Salesforce Org B using JWT token. Some useful commands are mentioned below :
    Command to create server key and server crt in one command only :
    openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout server.key -out server.crt -sha256
    Useful article to get jks file :
    help.salesforc...
    To Convert server.key to server.pem
    Run following commands:
    openssl pkcs12 -export -in server.crt -inkey server.pem -out keystore.p12
    Give same password throughout
    keytool -importkeystore -srckeystore keystore.p12 -srcstoretype pkcs12 -destkeystore servercert.jks -deststoretype jks
    keytool -keystore path/JWT/v10demo/servercert.jks -changealias -alias salesforcejks -destalias salesforcejks3

Комментарии • 7

  • @akhilakaparthi9143
    @akhilakaparthi9143 3 месяца назад

    Thankyou very much 😊😊

  • @starman9000
    @starman9000 Год назад +1

    Nice content, but I feel too many interchange of screen and copy and paste is made little confusing. Thanks for making this video though.

  • @bharathsharma1250
    @bharathsharma1250 Год назад

    Nice one 👍

  • @santanuroy571
    @santanuroy571 Год назад +1

    why aren't we generating the certificate from salesforce certificate and key management section ? please let me know why open ssl required

  • @jpmadan4794
    @jpmadan4794 Год назад

    Nice one

  • @sohilsaiyed3463
    @sohilsaiyed3463 Год назад

    while converting and using this keytool -importkeystore -srckeystore keystore.p12 -srcstoretype pkcs12 -destkeystore servercert.jks -deststoretype jks getting an error like 'keytool' is not recognized as an internal or external command,
    operable program or batch file.