Is it possible?
depends on webhook is quite expensive, I am trying to create a listener to get the latest payment id, the latest one, by API.
is it possible?
You want to obtain the last payment? How often do you need to do this. Yes, that could be done via API, but if you are doing it very frequently it would be better to use a webhook.
i am considering webhook as well, but push notification back to the APP could take a longer time?
is there anyway, that my APP got notify the webhook message directly without going thru an external server and push back the notification?
I am trying to also trying to use
Intents, but it doesn't seem to fire for me. I included the following in my AndroidManifest.xml:
<activity android:name=".PrintActivity" android:exported="true"> <intent-filter> <action android:name="com.clover.intent.action.START_PRINT_RECEIPTS"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </activity>
2 People are following this question.