Cannot receive HTTP notifications from eBay in API Gateway










2















I'm trying to configure the eBay Notifications API to send notifications to an AWS API Gateway I created. I already confirmed the API Gateway can receive POST HTTP requests without authentication using cURL commands sent from multiple sources and IPs, so that is not the issue.



Here's what I've set using SetNotificationPreferences:



<?xml version="1.0" encoding="UTF-8"?>
<SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<!-- Use the Developer portal or the <ApplicationDeliveryPreferences> container to set the Application delivery settings -->
<RequesterCredentials>
<eBayAuthToken>token_here</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<ApplicationDeliveryPreferences>
<AlertEmail>mailto://my_email_here</AlertEmail>
<AlertEnable>Enable</AlertEnable>
<ApplicationEnable>Enable</ApplicationEnable>
<ApplicationURL>api_gateway_url_here</ApplicationURL>
<DeviceType>Platform</DeviceType>
<DeliveryURLDetails>
<DeliveryURLName>Email</DeliveryURLName>
<DeliveryURL>mailto://my_email_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
<DeliveryURLDetails>
<DeliveryURLName>Gateway</DeliveryURLName>
<DeliveryURL>api_gateway_url_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
</ApplicationDeliveryPreferences>

<DeliveryURLName>Email,Gateway</DeliveryURLName>

<UserDeliveryPreferenceArray>
<NotificationEnable>
<EventType>FixedPriceTransaction</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemSold</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemListed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemRevised</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
</UserDeliveryPreferenceArray>
</SetNotificationPreferencesRequest>


I also called GetNotificationPreferences to make sure the preferences were saved correctly, and they were.



I am receiving XML notifications at the email address, but I am not receiving HTTP requests.



Has anyone else successfully configured eBay to send notifications to AWS or other HTTP endpoints? I'm willing to change my tech stack, such as set up an EC2 server instead of an API Gateway endpoint.



I suspect that eBay Notification API cannot connect to AWS API Gateway because I've had this issue in the past. For example, another RESTful API service didn't support the TLS 1.2 protocol that AWS API Gateway requires for connections, but I haven't proven that this is the case here. I'm going to set up another non-AWS API Gateway HTTP endpoint service to receive requests from eBay to test this theory.



Update 1



After watching the stack for another 24 hours, I am seeing multiple successful calls from the eBay Notification API through the AWS API Gateway. However, the number of successful HTTP calls does not match the number of emails sent. I still have the Notification Preferences set as above, and I'm receiving the number of email notifications I would expect per the number of events I'm observing.



However, I'm not receiving all the HTTP notifications I would expect. I am not able to identify a pattern in which HTTP notifications are successful, as they include notifications from each of the four enabled Events, comprising of the following SOAP types: GetItemResponse and GetItemTransactionsResponse.



Note: I have not had enough time to successfully set up another non-AWS API Gateway web server to receive HTTP notifications to isolate whether AWS is itself the problem. I'm not ruling out the possibility that it is NOT eBay's fault ;-). I'm open to suggestions on the simplest way to do this task. I was looking at tools like Mockbin, but I'd prefer something that uses HTTPS.



Update 2



I found Webhook Tester and configured eBay to send Notifications to the custom site. I triggered a few events in eBay, and I was surprised to see the notifications coming through both the email and the Webhook Tester, but no Notifications came through the API Gateway. I'm still not sure why the API Gateway is either not receiving or not accepting the requests consistently from eBay. I'd prefer to keep using API Gateway, but it seems that in a pinch I could use the code from Webhook Tester to build my own web server endpoint.



Update 3



On a whim, I changed the Endpoint Type in API Gateway from
Edge Optimized to Regional. I triggered a few more events in eBay and also let it alone for 2 hours to capture system-triggered events. I'm now seeing more and consistent events being sent to API Gateway. I'm not sure why this change made such a difference, and I plan to research it more.



As a reference, here's how to configure Endpoint Type in a Serverless project:
https://serverless.com/framework/docs/providers/aws/events/apigateway/#configuring-endpoint-types



Also helpful:
https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-basic-concept.html










share|improve this question



















  • 1





    Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

    – dmulter
    Nov 12 '18 at 22:25















2















I'm trying to configure the eBay Notifications API to send notifications to an AWS API Gateway I created. I already confirmed the API Gateway can receive POST HTTP requests without authentication using cURL commands sent from multiple sources and IPs, so that is not the issue.



Here's what I've set using SetNotificationPreferences:



<?xml version="1.0" encoding="UTF-8"?>
<SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<!-- Use the Developer portal or the <ApplicationDeliveryPreferences> container to set the Application delivery settings -->
<RequesterCredentials>
<eBayAuthToken>token_here</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<ApplicationDeliveryPreferences>
<AlertEmail>mailto://my_email_here</AlertEmail>
<AlertEnable>Enable</AlertEnable>
<ApplicationEnable>Enable</ApplicationEnable>
<ApplicationURL>api_gateway_url_here</ApplicationURL>
<DeviceType>Platform</DeviceType>
<DeliveryURLDetails>
<DeliveryURLName>Email</DeliveryURLName>
<DeliveryURL>mailto://my_email_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
<DeliveryURLDetails>
<DeliveryURLName>Gateway</DeliveryURLName>
<DeliveryURL>api_gateway_url_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
</ApplicationDeliveryPreferences>

<DeliveryURLName>Email,Gateway</DeliveryURLName>

<UserDeliveryPreferenceArray>
<NotificationEnable>
<EventType>FixedPriceTransaction</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemSold</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemListed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemRevised</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
</UserDeliveryPreferenceArray>
</SetNotificationPreferencesRequest>


I also called GetNotificationPreferences to make sure the preferences were saved correctly, and they were.



I am receiving XML notifications at the email address, but I am not receiving HTTP requests.



Has anyone else successfully configured eBay to send notifications to AWS or other HTTP endpoints? I'm willing to change my tech stack, such as set up an EC2 server instead of an API Gateway endpoint.



I suspect that eBay Notification API cannot connect to AWS API Gateway because I've had this issue in the past. For example, another RESTful API service didn't support the TLS 1.2 protocol that AWS API Gateway requires for connections, but I haven't proven that this is the case here. I'm going to set up another non-AWS API Gateway HTTP endpoint service to receive requests from eBay to test this theory.



Update 1



After watching the stack for another 24 hours, I am seeing multiple successful calls from the eBay Notification API through the AWS API Gateway. However, the number of successful HTTP calls does not match the number of emails sent. I still have the Notification Preferences set as above, and I'm receiving the number of email notifications I would expect per the number of events I'm observing.



However, I'm not receiving all the HTTP notifications I would expect. I am not able to identify a pattern in which HTTP notifications are successful, as they include notifications from each of the four enabled Events, comprising of the following SOAP types: GetItemResponse and GetItemTransactionsResponse.



Note: I have not had enough time to successfully set up another non-AWS API Gateway web server to receive HTTP notifications to isolate whether AWS is itself the problem. I'm not ruling out the possibility that it is NOT eBay's fault ;-). I'm open to suggestions on the simplest way to do this task. I was looking at tools like Mockbin, but I'd prefer something that uses HTTPS.



Update 2



I found Webhook Tester and configured eBay to send Notifications to the custom site. I triggered a few events in eBay, and I was surprised to see the notifications coming through both the email and the Webhook Tester, but no Notifications came through the API Gateway. I'm still not sure why the API Gateway is either not receiving or not accepting the requests consistently from eBay. I'd prefer to keep using API Gateway, but it seems that in a pinch I could use the code from Webhook Tester to build my own web server endpoint.



Update 3



On a whim, I changed the Endpoint Type in API Gateway from
Edge Optimized to Regional. I triggered a few more events in eBay and also let it alone for 2 hours to capture system-triggered events. I'm now seeing more and consistent events being sent to API Gateway. I'm not sure why this change made such a difference, and I plan to research it more.



As a reference, here's how to configure Endpoint Type in a Serverless project:
https://serverless.com/framework/docs/providers/aws/events/apigateway/#configuring-endpoint-types



Also helpful:
https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-basic-concept.html










share|improve this question



















  • 1





    Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

    – dmulter
    Nov 12 '18 at 22:25













2












2








2








I'm trying to configure the eBay Notifications API to send notifications to an AWS API Gateway I created. I already confirmed the API Gateway can receive POST HTTP requests without authentication using cURL commands sent from multiple sources and IPs, so that is not the issue.



Here's what I've set using SetNotificationPreferences:



<?xml version="1.0" encoding="UTF-8"?>
<SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<!-- Use the Developer portal or the <ApplicationDeliveryPreferences> container to set the Application delivery settings -->
<RequesterCredentials>
<eBayAuthToken>token_here</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<ApplicationDeliveryPreferences>
<AlertEmail>mailto://my_email_here</AlertEmail>
<AlertEnable>Enable</AlertEnable>
<ApplicationEnable>Enable</ApplicationEnable>
<ApplicationURL>api_gateway_url_here</ApplicationURL>
<DeviceType>Platform</DeviceType>
<DeliveryURLDetails>
<DeliveryURLName>Email</DeliveryURLName>
<DeliveryURL>mailto://my_email_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
<DeliveryURLDetails>
<DeliveryURLName>Gateway</DeliveryURLName>
<DeliveryURL>api_gateway_url_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
</ApplicationDeliveryPreferences>

<DeliveryURLName>Email,Gateway</DeliveryURLName>

<UserDeliveryPreferenceArray>
<NotificationEnable>
<EventType>FixedPriceTransaction</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemSold</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemListed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemRevised</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
</UserDeliveryPreferenceArray>
</SetNotificationPreferencesRequest>


I also called GetNotificationPreferences to make sure the preferences were saved correctly, and they were.



I am receiving XML notifications at the email address, but I am not receiving HTTP requests.



Has anyone else successfully configured eBay to send notifications to AWS or other HTTP endpoints? I'm willing to change my tech stack, such as set up an EC2 server instead of an API Gateway endpoint.



I suspect that eBay Notification API cannot connect to AWS API Gateway because I've had this issue in the past. For example, another RESTful API service didn't support the TLS 1.2 protocol that AWS API Gateway requires for connections, but I haven't proven that this is the case here. I'm going to set up another non-AWS API Gateway HTTP endpoint service to receive requests from eBay to test this theory.



Update 1



After watching the stack for another 24 hours, I am seeing multiple successful calls from the eBay Notification API through the AWS API Gateway. However, the number of successful HTTP calls does not match the number of emails sent. I still have the Notification Preferences set as above, and I'm receiving the number of email notifications I would expect per the number of events I'm observing.



However, I'm not receiving all the HTTP notifications I would expect. I am not able to identify a pattern in which HTTP notifications are successful, as they include notifications from each of the four enabled Events, comprising of the following SOAP types: GetItemResponse and GetItemTransactionsResponse.



Note: I have not had enough time to successfully set up another non-AWS API Gateway web server to receive HTTP notifications to isolate whether AWS is itself the problem. I'm not ruling out the possibility that it is NOT eBay's fault ;-). I'm open to suggestions on the simplest way to do this task. I was looking at tools like Mockbin, but I'd prefer something that uses HTTPS.



Update 2



I found Webhook Tester and configured eBay to send Notifications to the custom site. I triggered a few events in eBay, and I was surprised to see the notifications coming through both the email and the Webhook Tester, but no Notifications came through the API Gateway. I'm still not sure why the API Gateway is either not receiving or not accepting the requests consistently from eBay. I'd prefer to keep using API Gateway, but it seems that in a pinch I could use the code from Webhook Tester to build my own web server endpoint.



Update 3



On a whim, I changed the Endpoint Type in API Gateway from
Edge Optimized to Regional. I triggered a few more events in eBay and also let it alone for 2 hours to capture system-triggered events. I'm now seeing more and consistent events being sent to API Gateway. I'm not sure why this change made such a difference, and I plan to research it more.



As a reference, here's how to configure Endpoint Type in a Serverless project:
https://serverless.com/framework/docs/providers/aws/events/apigateway/#configuring-endpoint-types



Also helpful:
https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-basic-concept.html










share|improve this question
















I'm trying to configure the eBay Notifications API to send notifications to an AWS API Gateway I created. I already confirmed the API Gateway can receive POST HTTP requests without authentication using cURL commands sent from multiple sources and IPs, so that is not the issue.



Here's what I've set using SetNotificationPreferences:



<?xml version="1.0" encoding="UTF-8"?>
<SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<!-- Use the Developer portal or the <ApplicationDeliveryPreferences> container to set the Application delivery settings -->
<RequesterCredentials>
<eBayAuthToken>token_here</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<ApplicationDeliveryPreferences>
<AlertEmail>mailto://my_email_here</AlertEmail>
<AlertEnable>Enable</AlertEnable>
<ApplicationEnable>Enable</ApplicationEnable>
<ApplicationURL>api_gateway_url_here</ApplicationURL>
<DeviceType>Platform</DeviceType>
<DeliveryURLDetails>
<DeliveryURLName>Email</DeliveryURLName>
<DeliveryURL>mailto://my_email_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
<DeliveryURLDetails>
<DeliveryURLName>Gateway</DeliveryURLName>
<DeliveryURL>api_gateway_url_here</DeliveryURL>
<Status>Enable</Status>
</DeliveryURLDetails>
</ApplicationDeliveryPreferences>

<DeliveryURLName>Email,Gateway</DeliveryURLName>

<UserDeliveryPreferenceArray>
<NotificationEnable>
<EventType>FixedPriceTransaction</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemSold</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemListed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemRevised</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
</UserDeliveryPreferenceArray>
</SetNotificationPreferencesRequest>


I also called GetNotificationPreferences to make sure the preferences were saved correctly, and they were.



I am receiving XML notifications at the email address, but I am not receiving HTTP requests.



Has anyone else successfully configured eBay to send notifications to AWS or other HTTP endpoints? I'm willing to change my tech stack, such as set up an EC2 server instead of an API Gateway endpoint.



I suspect that eBay Notification API cannot connect to AWS API Gateway because I've had this issue in the past. For example, another RESTful API service didn't support the TLS 1.2 protocol that AWS API Gateway requires for connections, but I haven't proven that this is the case here. I'm going to set up another non-AWS API Gateway HTTP endpoint service to receive requests from eBay to test this theory.



Update 1



After watching the stack for another 24 hours, I am seeing multiple successful calls from the eBay Notification API through the AWS API Gateway. However, the number of successful HTTP calls does not match the number of emails sent. I still have the Notification Preferences set as above, and I'm receiving the number of email notifications I would expect per the number of events I'm observing.



However, I'm not receiving all the HTTP notifications I would expect. I am not able to identify a pattern in which HTTP notifications are successful, as they include notifications from each of the four enabled Events, comprising of the following SOAP types: GetItemResponse and GetItemTransactionsResponse.



Note: I have not had enough time to successfully set up another non-AWS API Gateway web server to receive HTTP notifications to isolate whether AWS is itself the problem. I'm not ruling out the possibility that it is NOT eBay's fault ;-). I'm open to suggestions on the simplest way to do this task. I was looking at tools like Mockbin, but I'd prefer something that uses HTTPS.



Update 2



I found Webhook Tester and configured eBay to send Notifications to the custom site. I triggered a few events in eBay, and I was surprised to see the notifications coming through both the email and the Webhook Tester, but no Notifications came through the API Gateway. I'm still not sure why the API Gateway is either not receiving or not accepting the requests consistently from eBay. I'd prefer to keep using API Gateway, but it seems that in a pinch I could use the code from Webhook Tester to build my own web server endpoint.



Update 3



On a whim, I changed the Endpoint Type in API Gateway from
Edge Optimized to Regional. I triggered a few more events in eBay and also let it alone for 2 hours to capture system-triggered events. I'm now seeing more and consistent events being sent to API Gateway. I'm not sure why this change made such a difference, and I plan to research it more.



As a reference, here's how to configure Endpoint Type in a Serverless project:
https://serverless.com/framework/docs/providers/aws/events/apigateway/#configuring-endpoint-types



Also helpful:
https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-basic-concept.html







amazon-web-services aws-api-gateway ebay ebay-api






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 17:49







Pflugs

















asked Nov 12 '18 at 21:15









PflugsPflugs

3251415




3251415







  • 1





    Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

    – dmulter
    Nov 12 '18 at 22:25












  • 1





    Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

    – dmulter
    Nov 12 '18 at 22:25







1




1





Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

– dmulter
Nov 12 '18 at 22:25





Seems that the eBay API moved to TLS 1.2 back in 2015 from what I can tell. Interested to hear what you discover with further experimentation.

– dmulter
Nov 12 '18 at 22:25












1 Answer
1






active

oldest

votes


















1














After several more days of watching the requests come in from eBay's notifications to AWS's API Gateway, I'm ready to say changing the Endpoint Type to 'regional' solved the issue. I can't say for sure why, but I can say for sure that I am receiving all the events I expect to receive.



If anyone has further information as to why this change works, I'm all ears. :-)






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%2f53270229%2fcannot-receive-http-notifications-from-ebay-in-api-gateway%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    After several more days of watching the requests come in from eBay's notifications to AWS's API Gateway, I'm ready to say changing the Endpoint Type to 'regional' solved the issue. I can't say for sure why, but I can say for sure that I am receiving all the events I expect to receive.



    If anyone has further information as to why this change works, I'm all ears. :-)






    share|improve this answer



























      1














      After several more days of watching the requests come in from eBay's notifications to AWS's API Gateway, I'm ready to say changing the Endpoint Type to 'regional' solved the issue. I can't say for sure why, but I can say for sure that I am receiving all the events I expect to receive.



      If anyone has further information as to why this change works, I'm all ears. :-)






      share|improve this answer

























        1












        1








        1







        After several more days of watching the requests come in from eBay's notifications to AWS's API Gateway, I'm ready to say changing the Endpoint Type to 'regional' solved the issue. I can't say for sure why, but I can say for sure that I am receiving all the events I expect to receive.



        If anyone has further information as to why this change works, I'm all ears. :-)






        share|improve this answer













        After several more days of watching the requests come in from eBay's notifications to AWS's API Gateway, I'm ready to say changing the Endpoint Type to 'regional' solved the issue. I can't say for sure why, but I can say for sure that I am receiving all the events I expect to receive.



        If anyone has further information as to why this change works, I'm all ears. :-)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 19 '18 at 4:49









        PflugsPflugs

        3251415




        3251415



























            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%2f53270229%2fcannot-receive-http-notifications-from-ebay-in-api-gateway%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

            How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

            Darth Vader #20

            Ondo