Asked Nov 20th, 2019 9:41 a.m. 93 0 1
  • 93 0 1
0

[ask] webpush notification Minishlink\WebPush

Share
  • 93 0 1

Mình đang có dự án cần triển khai webpush nên mình đã sử dụng Minishlink\WebPush

Nhưng mình đang gặp vấn đề như thế này

Khi truyền Subscription vào thư viện và gửi theo tuần tự thì khi gửi số lượng lớn thì báo lỗi thời gian phản hồi và file báo code 500. Đây là đoạn code mình lặp 1 mảng tầm 600 phần tử.

Mình muốn hỏi là kinh nghiệm nên chia ra gửi 1 lần bao nhiều Subscription là ổn?

        $webPush->setDefaultOptions([
			'TTL' => 86400, // if undelivered after 1 day, expire the notification
		]);

		$subscriptions = $this->getReceiverSubscriptions();

		foreach ($subscriptions AS $subscription)
		{
			$authData = json_decode($subscription['data'], true);

			$payload['subscriber_id'] = $subscription['endpoint_id'];

			try
			{
				$webPush->setAutomaticPadding($this->getEndpointPadding($subscription['endpoint']));

				$subObj = Subscription::create([
					'endpoint' => $subscription['endpoint'],
					'publicKey' => $authData['key'],
					'authToken' => $authData['token'],
					'contentEncoding' => $authData['encoding']
				]);

				$webPush->sendNotification(
					$subObj,
					json_encode($payload)
				);
			}
			catch (\Exception $e)
			{
				// generally indicates that the payload is too big which at ~3000 bytes shouldn't happen for a typical alert...
				continue;
			}
		}

		foreach ($webPush->flush() as $report) {
			$results[] = $report->jsonSerialize();
		}
Avatar Hải Hà @HaiHaChan
Nov 20th, 2019 10:56 a.m.

@jonyu học bạn @Stevendie cách đặt câu hỏi đi bạn ơi

+1
| Reply
Share

1 ANSWERS


Answered Nov 20th, 2019 10:49 a.m.
Accepted
+1

tạo 1 biến $array, trong vòng foreach chỉ cần đẩy giá trị

$array[] = [
    'endpoint' => $subscription['endpoint'],
    'publicKey' => $authData['key'],
    'authToken' => $authData['token'],
    'contentEncoding' => $authData['encoding']
]

vào $array. ngoài foreach thì bạn tiến hành lưu Subscription::create($array)

Share
Nov 21st, 2019 6:09 a.m.

@bachnguyen2907 Bạn giỏi quá, cho mình xin info để trao đổi được ko ạ 😍

0
| Reply
Share
Avatar Nguyễn Văn Bách @bachnguyen2907
Nov 21st, 2019 9:22 a.m.

@chinn liên hệ thư ký của mình nhé @chu.xuan.thang

+1
| Reply
Share
Nov 21st, 2019 9:24 a.m.

@bachnguyen2907 Xin info cả hai được ko ạ

0
| Reply
Share
Avatar Trúc Mai @Stevendie
Nov 22nd, 2019 2:21 a.m.

Cảm ơn bạn. Nay mình mới thử được.

Size Time Old Time New
100 4 3.7
200 8 7.4
400 14 14.4
800 504 Gateway Time-out 504 Gateway Time-out

Code này mình để trên site nên khi gửi thì site cũng đứng luôn 🤣

** Giải pháp mình là phải gửi lần lượt từng đoạn cắt subscriptions ra làm đoạn size: 200 sau đó gửi.**

Code sau khi thay ( ở cuối ):

foreach ($subscriptions AS $subscription)
		{
			$authData = json_decode($subscription['data'], true);

			$payload['subscriber_id'] = $subscription['endpoint_id'];

			$array = [
			    'endpoint' => $subscription['endpoint'],
			    'publicKey' => $authData['key'],
			    'authToken' => $authData['token'],
			    'contentEncoding' => $authData['encoding']
			];

			try
			{
				$webPush->setAutomaticPadding($this->getEndpointPadding($subscription['endpoint']));

				$subObj = Subscription::create($array);

				// $subObj = Subscription::create([
				// 	'endpoint' => $subscription['endpoint'],
				// 	'publicKey' => $authData['key'],
				// 	'authToken' => $authData['token'],
				// 	'contentEncoding' => $authData['encoding']
				// ]);

				$webPush->sendNotification(
					$subObj,
					json_encode($payload)
				);
			}
0
| Reply
Share
Viblo
Let's register a Viblo Account to get more interesting posts.