I implement in-app purchase server to server notification and add url in appstore But Some time i didn't get response from apple server in sandbox environment. My backend is in Python - django. Can anyone help me how to implement?
Didn't get in-app purchase server to server notification?
819 Views Asked by Drashti Javiya At
2
There are 2 best solutions below
0
Dheeraj Thedijje
On
Simplest Server to Server Approach using API
When an in-app purchase takes on say Server A, you can call an endpoint on say Server B where there is a listener who receive data which you will send from Server A.
This will work as a webhook for you.
If this doesn't help, please state your full or a bit more descriptive problem.
Related Questions in DJANGO
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
- Display multiple models in one view in Django
- Unexpected NoReverseMatch error when using include() in urls patterns
- Search for a key in django.core.cache
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Django flush won't load fixtures
Related Questions in IN-APP-PURCHASE
- Is the transactionReceipt data present in dataWithContentsOfURL?
- How do I add multiple in app purchases in Swift Spritekit?
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- implementing in app purchase on android
- Why do the purchases restore when I didn't buy any in app purchases?
- In app purchasing asks to login on viewDidLoad and pauses the whole app
- SKProduct keeps returning nil. SKPayment Transaction is not working
- Apple In app purchase receipt in wrong format
- Buy premium services in web, store purchases in CloudKit, avoid pay 30%
- UIButton error with SKPayment
- SpriteKit Game - SKScene Freezes during In-App Purchase in iOS 8.3
- Get product's Reference Name for iOS In-App-Purchase product from within App
- In App Purchases with multiple products
- Can there be multiple entry points for showing 1 In-App Purchase for iTunes?
- How app is noticed turning off a auto-renewing subscriptions from Settings > iTunes & App Store menu?
Related Questions in WEBHOOKS
- Can I use localhost URL as Webhook URL in Instamojo?
- Does django server support url callbacks (webhooks)?
- Saving Mandrill webhook to database
- Github <> remote server, auto deploy, the webhook doesn't work
- Custom post-receive hook with gitlab
- How do I trigger a build in Jenkins, with Git push to SCM-manager, when Jenkins does not allow anonymous user?
- Recurly: Get the verification transaction associated to the "billing info update"
- Best way to handle events in ecommerce store
- Does Box throw an "Upload" Webhook notification for files uploaded via email?
- How to update Packagist using Bitbucket Webhook
- Secure a webhook from unauthorized requests?
- Add GitLab Web hook for all projects in group
- Bitbucket new webhook not working
- Setting up a Telegram bot without a server
- Aftership webhook tracking API
Related Questions in SERVER-TO-SERVER
- Fastest server to server communication solution
- Google Big Query with C# Server to Server
- Is it possible to use Access Token for Server-to-Server Integrations in AppExchange uploaded packages? (Salesforce Marketing Cloud)
- Making a Cross Domain API
- Cron-Job Issue with double Proccesses
- Server to Server API Authentication + Authorization
- Is there an API to get the price of Apple's subscription?
- Server-to-Server App using Google Drive not responses to APIs calls
- How does a "Server to Server" tracking method(for redirect purposes) work?
- Apple server to server notifications with multiple triggers
- Sending server-to-server events to AppsFlyer
- CloudKit Server-to-Server authentication with delphi?
- PHP script to access server to server to Google drive to display my own file
- symfony 2 oauth protected api server to server
- GmailAPI with access to only one account (Server to server)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think to solve this question you're going to need to give more context.
I assume you've got a Django serverand and a (node.js) express api that is pointing to it for purchases:
If that's the case you'll need to create the routes in your express api for the in-app purchase function you need. There are many tutorials on this online that you could follow, type in express REST api into youtube.
Then call that api in your Django server using the request library, where you need it.