<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic After getting token using mobile SDK how do i charge? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75239#M46891</link>
    <description>&lt;P&gt;I am using the mobile sdk for andriod and ios to create a pluging for Flutter. I am getting `COMMON.ACCEPT.INAPP.PAYMENT` as my&amp;nbsp;DataDescriptor and i am getting a token. This is where the sample app stops&amp;nbsp;&lt;BR /&gt;&lt;A href="https://github.com/AuthorizeNet/accept-sample-android&amp;nbsp;" target="_blank"&gt;https://github.com/AuthorizeNet/accept-sample-android&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Im able to fetch the token but what do i do with it after i get it? Do i have to create a POST request with the token to createTransaction? Will apple even allow that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im just a bit confused if on mobile applicaations i can use authorize.net to charge the customer directly or do i have to go through apple pay/google pay then once the payment is finished i make a post request&amp;nbsp; here:&lt;BR /&gt;&lt;A href="https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-credit-card&amp;nbsp;&amp;nbsp;" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-credit-card&amp;nbsp;&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;as just a way to have charges show up in the portal but no real functionality? Am i able to refund customers through authorize.net when they use apply pay/google pay?&lt;/P&gt;</description>
    <pubDate>Sat, 06 Mar 2021 00:32:24 GMT</pubDate>
    <dc:creator>jeremiahlukus1</dc:creator>
    <dc:date>2021-03-06T00:32:24Z</dc:date>
    <item>
      <title>After getting token using mobile SDK how do i charge?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75239#M46891</link>
      <description>&lt;P&gt;I am using the mobile sdk for andriod and ios to create a pluging for Flutter. I am getting `COMMON.ACCEPT.INAPP.PAYMENT` as my&amp;nbsp;DataDescriptor and i am getting a token. This is where the sample app stops&amp;nbsp;&lt;BR /&gt;&lt;A href="https://github.com/AuthorizeNet/accept-sample-android&amp;nbsp;" target="_blank"&gt;https://github.com/AuthorizeNet/accept-sample-android&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Im able to fetch the token but what do i do with it after i get it? Do i have to create a POST request with the token to createTransaction? Will apple even allow that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im just a bit confused if on mobile applicaations i can use authorize.net to charge the customer directly or do i have to go through apple pay/google pay then once the payment is finished i make a post request&amp;nbsp; here:&lt;BR /&gt;&lt;A href="https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-credit-card&amp;nbsp;&amp;nbsp;" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-credit-card&amp;nbsp;&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;as just a way to have charges show up in the portal but no real functionality? Am i able to refund customers through authorize.net when they use apply pay/google pay?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 00:32:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75239#M46891</guid>
      <dc:creator>jeremiahlukus1</dc:creator>
      <dc:date>2021-03-06T00:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: After getting token using mobile SDK how do i charge?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75241#M46893</link>
      <description>&lt;P&gt;so maybe i have to make a post with&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;   {
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "YOUR_API_LOGIN_ID",
            "transactionKey": "YOUR_TRANSACTION_KEY"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "5",
            "payment": {
                "opaqueData": {
                    "dataDescriptor": "COMMON.ACCEPT.INAPP.PAYMENT",
                    "dataValue": "PAYMENT_NONCE_GOES_HERE"
                }
            }
        }
    }
}&lt;/PRE&gt;&lt;P&gt;Seems like this should be built into the sdk.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 00:49:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75241#M46893</guid>
      <dc:creator>jeremiahlukus1</dc:creator>
      <dc:date>2021-03-06T00:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: After getting token using mobile SDK how do i charge?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75243#M46895</link>
      <description>&lt;P&gt;bump&lt;/P&gt;</description>
      <pubDate>Sat, 06 Mar 2021 14:25:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75243#M46895</guid>
      <dc:creator>jeremiahlukus1</dc:creator>
      <dc:date>2021-03-06T14:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: After getting token using mobile SDK how do i charge?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75247#M46898</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are on the right track, go here&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/index.html#accept-suite-create-an-accept-payment-transaction" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html#accept-suite-create-an-accept-payment-transaction&lt;/A&gt; and then click on the tab for your language for an example. Since I'm implementing using PHP I click on the PHP tab and at the top of it it says "&lt;SPAN&gt;This sample PHP code demonstrates how to perform this function using our&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/AuthorizeNet/sdk-php" target="_blank" rel="noopener noreferrer"&gt;PHP SDK&lt;/A&gt;&lt;SPAN&gt;." Notice the link at the end of that string, so the next step is to get that SDK. Then follow the example code, get it connected to the SDK, and after some work you get it working.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 02:49:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/After-getting-token-using-mobile-SDK-how-do-i-charge/m-p/75247#M46898</guid>
      <dc:creator>bretmaverick999</dc:creator>
      <dc:date>2021-03-07T02:49:57Z</dc:date>
    </item>
  </channel>
</rss>

