Integrate Stripe into qt mobile application
-
I have a requirement of integrate stripe into Qt Mobile application for android and ios. I searched on it but not able to find any suitable starting point. What are the possible solutions for me to integrate stripe in c++ applications.
@bhupi012
since the API is provided via a REST interface
you can use QtNetworkAuth (coming with Qt 5.10) to use OAuth for the login into the web-service.
And then simply use QNetworkAccessManager to send your GET/POST requests to the webservice -
@bhupi012
since the API is provided via a REST interface
you can use QtNetworkAuth (coming with Qt 5.10) to use OAuth for the login into the web-service.
And then simply use QNetworkAccessManager to send your GET/POST requests to the webservice@raven-worx Will go with above approach.
-
@bhupi012
since the API is provided via a REST interface
you can use QtNetworkAuth (coming with Qt 5.10) to use OAuth for the login into the web-service.
And then simply use QNetworkAccessManager to send your GET/POST requests to the webservice@raven-worx Any Idea when Qt 5.10 will be released and Any other option other than this
-
@raven-worx Any Idea when Qt 5.10 will be released and Any other option other than this
@bhupi012
Qt 5.10 is planned to be released by the end of November. But you can already download the alpha version and start coding.
For OAuth there are also several 3rd party libs available (also for Qt). Or you can even handle it all by yourself using only QNetworkAccessManager. There is no magic behind it. Just some OAuth protocol rules to follow. -
@bhupi012
Qt 5.10 is planned to be released by the end of November. But you can already download the alpha version and start coding.
For OAuth there are also several 3rd party libs available (also for Qt). Or you can even handle it all by yourself using only QNetworkAccessManager. There is no magic behind it. Just some OAuth protocol rules to follow.@raven-worx I decided to generate token from mobile app and for transaction app will rely on server.
comments: https://stackoverflow.com/questions/46559046/integrate-stripe-into-qt-mobile-application -
@raven-worx I decided to generate token from mobile app and for transaction app will rely on server.
comments: https://stackoverflow.com/questions/46559046/integrate-stripe-into-qt-mobile-application