Replies: 6 comments 5 replies
-
Did you try other events? Regrading the Subscribed event you follow this discussion. #24 |
Beta Was this translation helpful? Give feedback.
-
hi @imdhemy, |
Beta Was this translation helpful? Give feedback.
-
Hi @imdhemy, |
Beta Was this translation helpful? Give feedback.
-
Hi @imdhemy, here we didn't get that log in BuySubscription.php |
Beta Was this translation helpful? Give feedback.
-
Hi @vinaye42
That means the test notification should not trigger the AppStore events. For more information on how to test the subscription life-cycle, you can consult this guide from Apple. To know how to handle events in your Laravel application, you can consult the LIAP documentation. It would help if you double-check which version of notifications you are using. |
Beta Was this translation helpful? Give feedback.
-
Hi @imdhemy,
and we get the log in BuySubscription.php listeners, but now we added below line
that's gives error, |
Beta Was this translation helpful? Give feedback.
-
`
website.test.com:443 172.70.43.153 - - [15/May/2024:06:43:26 +0000] "POST /liap/notifications?signature=&provider=app-store HTTP/1.1" 200 4043 "-" "Apache-HttpClient/4.5.14 (Java/11.0.23)"
'routing' => [
'signed' => true,
],
'eventListeners' => [
Subscribed::class => [ \App\Listeners\BuySubscription::class ],
],
namespace App\Listeners;
use Imdhemy\Purchases\Events\AppStore\Subscribed;
class BuySubscription
{
}
but still didn't listened event,
we follow the document added all the detail as mention in document, should it take time
`
Beta Was this translation helpful? Give feedback.
All reactions