mohsenbostan 0 گزارش دادن ارسال شده در آبان 98 سلام دوستان. بنده با استفاده از pusher یک نوتیفیکیشن به pusher ارسال میکنم. در پوشر به درستی دریافت میشه اما بازگشت داده نمیشه. چیزی که در pusher دریافت میکنم : API MESSAGE Channel: private-users.1, Event: Illuminate\Notifications\Events\BroadcastNotificationCreated { "status": "success", "message": " ویدیو تست با موفقیت در کیفیت 144 پردازش شد!", "id": "c8416cb8-741d-422e-ab85-4574c4ad99b9", "type": "App\\Notifications\\videoProcessStatus" } کدی که برای دریافت ( نمایش ) استفاده میکنم : Echo.private('App.User.' + this.userId) .notification( (notification) => { console.log(notification); this.flash(notification.message, notification.status, { timeout: 3000, }); }); مشکل دقیقا در این قسمت هستش که کلا انگار هیچی دریافت نمیکنه که نشون بده. دوستان لطفا راهنمایی کنند. نقل قول Share this post Link to post Share on other sites
mohsenbostan 0 گزارش دادن ارسال شده در آبان 98 ببخشید کد ها بد شده بود دوباره ارسال کردم : چیزی که در pusher دریافت میکنم { "status": "success", "message": "New Follower!", "id": "44392cfc-c301-4918-aa9f-4a47bd842615", "type": "App\Notifications\followerNotification" } کدی که برای دریافت ( نمایش ) استفاده میکنم : import Echo from 'laravel-echo'; window.Pusher = require('pusher-js'); window.Echo = new Echo({ broadcaster: 'pusher', key: '79a928f83a619e81a5ad', cluster: 'ap2', encrypted: true, namespace: 'App' }); Echo.private('App.User.' + this.userId) .notification((notification) => { console.log(notification); }); نقل قول Share this post Link to post Share on other sites