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
- Django Admin Panel and Sub URLs Returning 404 Error on Deployment
- How to return HTTP Get request response from models class in Django project
- Issue with Quantity Increment in Django E-commerce Cart
- Can't install Pipenv on Windows
- use dict from python in django html template and also in js
- 'pyodbc.Cursor' object has no attribute 'callproc', mssql with django
- Django socketio process
- Root path analogue in uWSGI as in Uvicorn
- Django - ModuleNotFoundError: No module named 'backend'
- Does Python being a loosely typed programming language make it less secure?
- sorl-thumbnail adds a background color when padding is used
- Can't connect to local postgresql server from my docker container
- Why ProductHunt api dont work with Python?
- why i have to put extra space in before write option selected because it show error if i don't ' option:selected'
- Django Arrayfield migration to cloud sql (Postgresql) not creating the column
Related Questions in IN-APP-PURCHASE
- TypeError: _appStoreServerLibrary.SignedDataVerifier is not a constructor node js app-store-server-library
- macOS in-app purchases via dylib - is it possible? alternatives? suggestions?
- StoreKit 2: Custom purchase option isn't recorded
- ios sdk swift : Show in-app app update/install prompt
- purchase errors via 2accounts
- How to handle Apple subscription with serverside verification
- IOS IAP succeed but does not charge the user
- Can't add iOS sandbox test credit cards
- Cannot see free trial in Android/Play store using Flutter in_app_purchase
- Can an iOS app sell user created content with In-App Purchases?
- Flutter in_app_purchase multiple subscriptions
- iOS 17.4 Code=4097 "connection to service named com.apple.storekitd"
- Is there any way to handle promocode in flutter?
- How I can know if the user cancel the subscription from google play store using in_app_purchase Flutter?
- Unity IAP AppleOriginalTransactionID is empty
Related Questions in WEBHOOKS
- Logic Apps and long running Azure Function (Powershell)
- Adyen and .NET Standard .. Webhook
- Slack webhook returns invalid_payload when message is a url
- How to synchronously respond from an Azure Function when my response data is obtained via a webhook?
- Stripe subscription auto cancellation after X months - Wordpress
- How to create middleware API in .NET Core
- TradingView webhooks to Discord via Alert Message box - embedded URL link incorrect
- Git Webhook to trigger SageMaker Pipeline
- Need to subscribe to 3rd party webhook to get notified of events
- Dialogflow Webhook response format (Dialogflow messenger)
- Troubleshooting 'File Not Found' Error in FastAPI & Aiogram Bot When Accessing Files via Ngrok
- Dynamics365 CRM - calling an Azure Function as webhook - challenge with text encoding
- Not able to send any POST request from Clerk to Vercel
- MSTeams echo bot using PowerShell Azure Functions
- How to store Data in Database from Webhook
Related Questions in SERVER-TO-SERVER
- Is it possible to use Access Token for Server-to-Server Integrations in AppExchange uploaded packages? (Salesforce Marketing Cloud)
- Setup Server to Server in Firebase and GA4
- Google Cloud - App engine - Server to server tracking - Getting data into Bigquery
- How do I decode/decrypt Apple Server-to-Server Notifications?
- Disable fastly cache on individual request
- Python Server to Server communication, multi-threading, Consumer Producer
- GmailAPI with access to only one account (Server to server)
- How to connect Woocommerce WordPress plugin to a Spring Boot API based on Spring Security Oauth2 JWT?
- Unable to find the pricing and limit for the server to server notification
- How to copy elasticsearch indices or logs from one elasticsearch server to another?
- Is there an API to get the price of Apple's subscription?
- Server to Server API Authentication + Authorization
- PHP CURL sometimes work and sometimes not
- Cron-Job Issue with double Proccesses
- Is there a way to identify express server-to-server request origin
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 # Hahtags
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.