Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.

How to integrate payment system into a mobile app?

Discussion in 'Multiplayer' started by PhatBoyStudios, Jun 18, 2019.

  1. PhatBoyStudios

    PhatBoyStudios

    Joined:
    Jan 26, 2019
    Posts:
    4
    I am working on a food ordering app for a business. I have finished everything regarding the app and I am stuck on one thing. How to charge people for the food? When I use the Unity IAP I am not able to dynamically change the price for every order. I want to know an IAP service similar to Unity's which would allow me to change the price dynamically for every order.
     
  2. Tiny-Tree

    Tiny-Tree

    Joined:
    Dec 26, 2012
    Posts:
    1,314
  3. TwoTen

    TwoTen

    Unity Technologies

    Joined:
    May 25, 2016
    Posts:
    1,168
    https://stripe.com/ is very nice. Also braintree which is paypals alternative is also appealing. But their API is much worse imo, they are basically ran by paypal and Uber as their main customer.
     
  4. Tiny-Tree

    Tiny-Tree

    Joined:
    Dec 26, 2012
    Posts:
    1,314
    on google play and apple store you cannot use external payment solutions
     
  5. TwoTen

    TwoTen

    Unity Technologies

    Joined:
    May 25, 2016
    Posts:
    1,168
    Yes you can, just not for certain things. Such as in game content. At least for app store. Dont know there are restrictions on Google Play. If you can link the source
     
  6. Tiny-Tree

    Tiny-Tree

    Joined:
    Dec 26, 2012
    Posts:
    1,314
  7. TwoTen

    TwoTen

    Unity Technologies

    Joined:
    May 25, 2016
    Posts:
    1,168
    Last edited: Jun 18, 2019
    Joe-Censored likes this.
  8. PhatBoyStudios

    PhatBoyStudios

    Joined:
    Jan 26, 2019
    Posts:
    4
    TwoTen likes this.
  9. shikharchaurasia

    shikharchaurasia

    Joined:
    Dec 17, 2020
    Posts:
    1
    well you can create an external link with a simple function in unity Application.OpenURL("your url in str") and can simply redirect to any external webpage for payment options.