we are developing an application for adobe air with in-app purchase
(of game add-ons).
we need to implement alipay inside the app.
I downloaded their documentations, it looks like there is no native extension for air.
i thought about using it with php + StageWebView (to show their UI for user paument) .
anyone here has an experience with Alipay + AS3?
Adobe AIR app with ALIPAY
116 views Asked by calimero At
1
There are 1 answers
Related Questions in ANDROID
- Amazon SP-API: what are the steps I should follow to finally being able to use it
- SP-API - Upload user manual
- Amazon SP API Orders API getting old orders with null information
- Upload Feed to Amazon with AWS SP-API
- Amazon SP-API SDK
- Laravel: XML Parsing Fatal Error at Line 1, Column 1: Content is not allowed in prolog. Content is not allowed in prolog
- Amazon SP-Api Messaging Api problem with getting messages from buyer and seller
- amzon SP-API, SignatureDoesNotMatch
- PHP-Laravel Amazon feed XML Parsing Fatal Error at Line 1, Column 1
- Amzon SP-API : repricing using JSON_LISTINGS_FEED in multi-marketplaces with python
Related Questions in ACTIONSCRIPT-3
- Amazon SP-API: what are the steps I should follow to finally being able to use it
- SP-API - Upload user manual
- Amazon SP API Orders API getting old orders with null information
- Upload Feed to Amazon with AWS SP-API
- Amazon SP-API SDK
- Laravel: XML Parsing Fatal Error at Line 1, Column 1: Content is not allowed in prolog. Content is not allowed in prolog
- Amazon SP-Api Messaging Api problem with getting messages from buyer and seller
- amzon SP-API, SignatureDoesNotMatch
- PHP-Laravel Amazon feed XML Parsing Fatal Error at Line 1, Column 1
- Amzon SP-API : repricing using JSON_LISTINGS_FEED in multi-marketplaces with python
Related Questions in FLASH
- Amazon SP-API: what are the steps I should follow to finally being able to use it
- SP-API - Upload user manual
- Amazon SP API Orders API getting old orders with null information
- Upload Feed to Amazon with AWS SP-API
- Amazon SP-API SDK
- Laravel: XML Parsing Fatal Error at Line 1, Column 1: Content is not allowed in prolog. Content is not allowed in prolog
- Amazon SP-Api Messaging Api problem with getting messages from buyer and seller
- amzon SP-API, SignatureDoesNotMatch
- PHP-Laravel Amazon feed XML Parsing Fatal Error at Line 1, Column 1
- Amzon SP-API : repricing using JSON_LISTINGS_FEED in multi-marketplaces with python
Related Questions in AIR
- Amazon SP-API: what are the steps I should follow to finally being able to use it
- SP-API - Upload user manual
- Amazon SP API Orders API getting old orders with null information
- Upload Feed to Amazon with AWS SP-API
- Amazon SP-API SDK
- Laravel: XML Parsing Fatal Error at Line 1, Column 1: Content is not allowed in prolog. Content is not allowed in prolog
- Amazon SP-Api Messaging Api problem with getting messages from buyer and seller
- amzon SP-API, SignatureDoesNotMatch
- PHP-Laravel Amazon feed XML Parsing Fatal Error at Line 1, Column 1
- Amzon SP-API : repricing using JSON_LISTINGS_FEED in multi-marketplaces with python
Related Questions in ALIPAY
- Amazon SP-API: what are the steps I should follow to finally being able to use it
- SP-API - Upload user manual
- Amazon SP API Orders API getting old orders with null information
- Upload Feed to Amazon with AWS SP-API
- Amazon SP-API SDK
- Laravel: XML Parsing Fatal Error at Line 1, Column 1: Content is not allowed in prolog. Content is not allowed in prolog
- Amazon SP-Api Messaging Api problem with getting messages from buyer and seller
- amzon SP-API, SignatureDoesNotMatch
- PHP-Laravel Amazon feed XML Parsing Fatal Error at Line 1, Column 1
- Amzon SP-API : repricing using JSON_LISTINGS_FEED in multi-marketplaces with python
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?
Popular Tags
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)
Create an API on your own server that maps to the Alipay API or just hit the Alipay API directly. You shouldn't use a
StageWebView
for anything more than displaying a simple page since you have absolutely no control over it and cannot retrieve any data or response from the browser in your AS3.If you are planning to upload this to the iOS App Store, you can't use Alipay. You must use Apple's In-App Purchase system. If you don't, Apple will reject your app. I don't know about the Google Play Store off the top of my head, but I believe it is recommended you do the same though not currently enforced the way Apple does. Additionally, it is natively supported and what users expect when using an Android or iOS device. There are various AIR Native Extensions (ANE) that you can use to implement that (just do some searching and you should find some)