Https hook target url not invoked in podio












0















Need help to investigate why my https hook target url is not properly invoced in Podio.
I suspect there is a certificate issue, even though the certificate is valid for the domain.










share|improve this question























  • Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

    – quant
    Nov 13 '18 at 7:13
















0















Need help to investigate why my https hook target url is not properly invoced in Podio.
I suspect there is a certificate issue, even though the certificate is valid for the domain.










share|improve this question























  • Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

    – quant
    Nov 13 '18 at 7:13














0












0








0








Need help to investigate why my https hook target url is not properly invoced in Podio.
I suspect there is a certificate issue, even though the certificate is valid for the domain.










share|improve this question














Need help to investigate why my https hook target url is not properly invoced in Podio.
I suspect there is a certificate issue, even though the certificate is valid for the domain.







podio






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 13 '18 at 6:51









T DombenT Domben

1




1













  • Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

    – quant
    Nov 13 '18 at 7:13



















  • Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

    – quant
    Nov 13 '18 at 7:13

















Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

– quant
Nov 13 '18 at 7:13





Hi and welcome to SO. Your posted question does not appear to include any attempt at all to solve the problem. StackOverflow expects you to try to solve your own problem first, as your attempts help us to better understand what you want. Please edit the question to show what you've tried, so as to illustrate a specific problem you're having in a Minimal, Complete, and Verifiable example. For more information, please see How to Ask and take the Tour.

– quant
Nov 13 '18 at 7:13












2 Answers
2






active

oldest

votes


















0














Once you add the hook in an App, Podio will make a verify call to the url that you provided(Also, You can trigger the verify call programmatically.). You have to validate the hook using the code received from the verify call. The hook will become active only after on successful validation.



Refer Podio documentation here,





  • Request hook verification

  • Validate hook verification


Also they have a detailed tutorial on Working with Webhooks






share|improve this answer
























  • Thank you for your answer.

    – T Domben
    Nov 13 '18 at 11:12











  • Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

    – T Domben
    Nov 13 '18 at 11:24



















0














Reproduced the error using django and rest hooks, resulted in error : (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))). Used https://www.ssllabs.com/ and found a certificate chain issue. I suppose this is the problem.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53275362%2fhttps-hook-target-url-not-invoked-in-podio%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Once you add the hook in an App, Podio will make a verify call to the url that you provided(Also, You can trigger the verify call programmatically.). You have to validate the hook using the code received from the verify call. The hook will become active only after on successful validation.



    Refer Podio documentation here,





    • Request hook verification

    • Validate hook verification


    Also they have a detailed tutorial on Working with Webhooks






    share|improve this answer
























    • Thank you for your answer.

      – T Domben
      Nov 13 '18 at 11:12











    • Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

      – T Domben
      Nov 13 '18 at 11:24
















    0














    Once you add the hook in an App, Podio will make a verify call to the url that you provided(Also, You can trigger the verify call programmatically.). You have to validate the hook using the code received from the verify call. The hook will become active only after on successful validation.



    Refer Podio documentation here,





    • Request hook verification

    • Validate hook verification


    Also they have a detailed tutorial on Working with Webhooks






    share|improve this answer
























    • Thank you for your answer.

      – T Domben
      Nov 13 '18 at 11:12











    • Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

      – T Domben
      Nov 13 '18 at 11:24














    0












    0








    0







    Once you add the hook in an App, Podio will make a verify call to the url that you provided(Also, You can trigger the verify call programmatically.). You have to validate the hook using the code received from the verify call. The hook will become active only after on successful validation.



    Refer Podio documentation here,





    • Request hook verification

    • Validate hook verification


    Also they have a detailed tutorial on Working with Webhooks






    share|improve this answer













    Once you add the hook in an App, Podio will make a verify call to the url that you provided(Also, You can trigger the verify call programmatically.). You have to validate the hook using the code received from the verify call. The hook will become active only after on successful validation.



    Refer Podio documentation here,





    • Request hook verification

    • Validate hook verification


    Also they have a detailed tutorial on Working with Webhooks







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 13 '18 at 8:47









    Mûhámmàd Yäsår KMûhámmàd Yäsår K

    1,069619




    1,069619













    • Thank you for your answer.

      – T Domben
      Nov 13 '18 at 11:12











    • Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

      – T Domben
      Nov 13 '18 at 11:24



















    • Thank you for your answer.

      – T Domben
      Nov 13 '18 at 11:12











    • Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

      – T Domben
      Nov 13 '18 at 11:24

















    Thank you for your answer.

    – T Domben
    Nov 13 '18 at 11:12





    Thank you for your answer.

    – T Domben
    Nov 13 '18 at 11:12













    Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

    – T Domben
    Nov 13 '18 at 11:24





    Thank you for your answer! I have had the implementation working for a year and half, but we have renewed our certificates and also a new operations provider. When using the url from webRequest in poweshell the server is hit. When using http the server is also hit. Is there any way I can find out what is happening i Podio?

    – T Domben
    Nov 13 '18 at 11:24













    0














    Reproduced the error using django and rest hooks, resulted in error : (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))). Used https://www.ssllabs.com/ and found a certificate chain issue. I suppose this is the problem.






    share|improve this answer




























      0














      Reproduced the error using django and rest hooks, resulted in error : (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))). Used https://www.ssllabs.com/ and found a certificate chain issue. I suppose this is the problem.






      share|improve this answer


























        0












        0








        0







        Reproduced the error using django and rest hooks, resulted in error : (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))). Used https://www.ssllabs.com/ and found a certificate chain issue. I suppose this is the problem.






        share|improve this answer













        Reproduced the error using django and rest hooks, resulted in error : (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1045)'))). Used https://www.ssllabs.com/ and found a certificate chain issue. I suppose this is the problem.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 13 '18 at 14:38









        T DombenT Domben

        1




        1






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53275362%2fhttps-hook-target-url-not-invoked-in-podio%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Florida Star v. B. J. F.

            Error while running script in elastic search , gateway timeout

            Adding quotations to stringified JSON object values