René's URL Explorer Experiment


Title: Notifications can't show in my app · Issue #231 · NativeScript/push-plugin · GitHub

Open Graph Title: Notifications can't show in my app · Issue #231 · NativeScript/push-plugin

X Title: Notifications can't show in my app · Issue #231 · NativeScript/push-plugin

Description: I tried this for android, but I can't push notifications in application. My code application, in main-view-model.ts import { Observable } from "tns-core-modules/data/observable"; import * as pushPlugin from "nativescript-push-notificatio...

Open Graph Description: I tried this for android, but I can't push notifications in application. My code application, in main-view-model.ts import { Observable } from "tns-core-modules/data/observable"; import * as pushPl...

X Description: I tried this for android, but I can't push notifications in application. My code application, in main-view-model.ts import { Observable } from "tns-core-modules/data/observable"; impo...

Opengraph URL: https://github.com/NativeScript/push-plugin/issues/231

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Notifications can't show in my app","articleBody":"I tried [this][1] for android, but I can't push notifications in application.\r\n\r\nMy code application,\r\n\r\nin main-view-model.ts\r\n\r\n    import { Observable } from \"tns-core-modules/data/observable\";\r\n    import * as pushPlugin from \"nativescript-push-notifications\";\r\n    export class HelloWorldModel extends Observable {\r\n     private pushSettings = {\r\n            // Android settings\r\n            senderID: \"387819224537\", // Android: Required setting with the sender/project number\r\n            notificationCallbackAndroid: (stringifiedData: String, fcmNotification: any) =\u003e {\r\n                const notificationBody = fcmNotification \u0026\u0026 fcmNotification.getBody();\r\n                console.log(notificationBody)\r\n                this.updateMessage(\"Message received!\\n\" + notificationBody + \"\\n\" + stringifiedData);\r\n            }\r\n             // iOS settings\r\n            // badge: true, // Enable setting badge through Push Notification\r\n            // sound: true, // Enable playing a sound\r\n            // alert: true, // Enable creating a alert\r\n            // notificationCallbackIOS: (message: any) =\u003e {\r\n            //     this.updateMessage(\"Message received!\\n\" + JSON.stringify(message));\r\n            // }\r\n        };\r\n    \r\n        private _counter: number;\r\n        private _message: string;\r\n    \r\n        constructor() {\r\n            super();\r\n            this.message = \"\";\r\n            this.updateMessage(\"App started.\");\r\n    \r\n            let self = this;\r\n            this.onRegisterButtonTap();\r\n        }\r\n    \r\n        get message(): string {\r\n            return this._message;\r\n        }\r\n    \r\n        set message(value: string) {\r\n            if (this._message !== value) {\r\n                this._message = value;\r\n                this.notifyPropertyChange(\"message\", value);\r\n            }\r\n        }\r\n    \r\n        onCheckButtonTap() {\r\n            let self = this;\r\n            pushPlugin.areNotificationsEnabled((areEnabled: Boolean) =\u003e {\r\n                self.updateMessage(\"Are Notifications enabled: \" + !!areEnabled);\r\n            });\r\n        }\r\n    \r\n        onRegisterButtonTap() {\r\n            let self = this;\r\n            pushPlugin.register(this.pushSettings, (token: String) =\u003e {\r\n                self.updateMessage(\"Device registered. Access token: \" + token);\r\n                // token displayed in console for easier copying and debugging durng development\r\n                console.log(\"Device registered. Access token: \" + token);\r\n    \r\n                if (pushPlugin.registerUserNotificationSettings) {\r\n                    pushPlugin.registerUserNotificationSettings(() =\u003e {\r\n                        self.updateMessage(\"Successfully registered for interactive push.\");\r\n                    }, (err) =\u003e {\r\n                        self.updateMessage(\"Error registering for interactive push: \" + JSON.stringify(err));\r\n                    });\r\n                }\r\n            }, (errorMessage: String) =\u003e {\r\n                self.updateMessage(JSON.stringify(errorMessage));\r\n            });\r\n        }\r\n    \r\n        onUnregisterButtonTap() {\r\n            let self = this;\r\n            pushPlugin.unregister(\r\n                (successMessage: String) =\u003e {\r\n                    self.updateMessage(successMessage);\r\n                },\r\n                (errorMessage: String) =\u003e {\r\n                    self.updateMessage(JSON.stringify(errorMessage));\r\n                },\r\n                this.pushSettings\r\n            );\r\n        }\r\n    \r\n        private updateMessage(text: String) {\r\n            this.message += text + \"\\n\";\r\n        }\r\n    \r\n    }\r\n\r\nin app.ts\r\n\r\n    import * as application from 'application';\r\n    import firebase = require(\"nativescript-plugin-firebase\");\r\n    \r\n    firebase.init({\r\n    }).then(\r\n        (instance) =\u003e {\r\n            console.log(\"Fierbase init done!\");\r\n        },\r\n        (error) =\u003e {\r\n            console.log(\"Firebase init error: \" + error);\r\n        }\r\n    );\r\n    \r\n    application.run({ moduleName: 'app-root' });\r\n\r\nin main-page.xml\r\n\r\n\t\u003cStackLayout class=\"p-20\"\u003e\r\n\t\t\u003cButton text=\"Are notifications enabled?\" tap=\"{{ onCheckButtonTap }}\" android:visibility=\"collapsed\" class=\"btn\" /\u003e\r\n\t\t\u003cButton text=\"Register device\" tap=\"{{ onRegisterButtonTap }}\" class=\"btn\" /\u003e\r\n\t\t\u003cButton text=\"Unregister device\" tap=\"{{ onUnregisterButtonTap }}\" class=\"btn\" /\u003e\r\n\t\t\u003cLabel text=\"Log:\" class=\"h1\" /\u003e\r\n\t\t\u003cScrollView orientation=\"vertical\"\u003e\r\n\t\t\t\u003cLabel text=\"{{ message }}\" class=\"h2\" textWrap=\"true\" /\u003e\r\n\t\t\u003c/ScrollView\u003e\r\n\t\u003c/StackLayout\u003e\r\n\r\nin mobile show this [![image][2]][2]\r\n\r\nWhen I tried to post from Postman in my app doesn't show any notification. Please can you ask me, who is the problem?\r\n\r\nin Postman I tried like in [![image][3]][3]:\r\n\r\n\r\n  [1]: https://market.nativescript.org/plugins/nativescript-push-notifications\r\n  [2]: https://i.stack.imgur.com/qauPM.png\r\n  [3]: https://i.stack.imgur.com/vQuZw.png","author":{"url":"https://github.com/abinaj","@type":"Person","name":"abinaj"},"datePublished":"2018-07-09T12:34:58.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/231/push-plugin/issues/231"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:68741cc3-1c28-eb17-5ca1-8f7903aa5476
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE72A:13CA6B:49A957:6093B3:6992144F
html-safe-nonced0aac0dea1292160480f2ecb1be5058f6dc61af703bd434687ceb7bb1b0d2022
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNzJBOjEzQ0E2Qjo0OUE5NTc6NjA5M0IzOjY5OTIxNDRGIiwidmlzaXRvcl9pZCI6IjczNzQ2MjU1OTI1MTg1MTM3NDMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacc9d387dc1a58acb127778a1def1d101c3254b7da1362d82834b9effea3c483d1
hovercard-subject-tagissue:339430706
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/NativeScript/push-plugin/231/issue_layout
twitter:imagehttps://opengraph.githubassets.com/2cbbdb4a56fdac7242f5fc673136567fa2c2a45d99f24a04d600c27b40b24198/NativeScript/push-plugin/issues/231
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/2cbbdb4a56fdac7242f5fc673136567fa2c2a45d99f24a04d600c27b40b24198/NativeScript/push-plugin/issues/231
og:image:altI tried this for android, but I can't push notifications in application. My code application, in main-view-model.ts import { Observable } from "tns-core-modules/data/observable"; import * as pushPl...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameabinaj
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/NativeScript/push-plugin git https://github.com/NativeScript/push-plugin.git
octolytics-dimension-user_id7392261
octolytics-dimension-user_loginNativeScript
octolytics-dimension-repository_id39781030
octolytics-dimension-repository_nwoNativeScript/push-plugin
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id39781030
octolytics-dimension-repository_network_root_nwoNativeScript/push-plugin
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release848bc6032dcc93a9a7301dcc3f379a72ba13b96e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2Fpush-plugin%2Fissues%2F231
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FNativeScript%2Fpush-plugin%2Fissues%2F231
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=NativeScript%2Fpush-plugin
Reloadhttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231
Reloadhttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231
Reloadhttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231
NativeScript https://patch-diff.githubusercontent.com/NativeScript
push-pluginhttps://patch-diff.githubusercontent.com/NativeScript/push-plugin
Please reload this pagehttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FNativeScript%2Fpush-plugin
Fork 45 https://patch-diff.githubusercontent.com/login?return_to=%2FNativeScript%2Fpush-plugin
Star 123 https://patch-diff.githubusercontent.com/login?return_to=%2FNativeScript%2Fpush-plugin
Code https://patch-diff.githubusercontent.com/NativeScript/push-plugin
Issues 36 https://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues
Pull requests 0 https://patch-diff.githubusercontent.com/NativeScript/push-plugin/pulls
Actions https://patch-diff.githubusercontent.com/NativeScript/push-plugin/actions
Projects 0 https://patch-diff.githubusercontent.com/NativeScript/push-plugin/projects
Wiki https://patch-diff.githubusercontent.com/NativeScript/push-plugin/wiki
Security 0 https://patch-diff.githubusercontent.com/NativeScript/push-plugin/security
Insights https://patch-diff.githubusercontent.com/NativeScript/push-plugin/pulse
Code https://patch-diff.githubusercontent.com/NativeScript/push-plugin
Issues https://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues
Pull requests https://patch-diff.githubusercontent.com/NativeScript/push-plugin/pulls
Actions https://patch-diff.githubusercontent.com/NativeScript/push-plugin/actions
Projects https://patch-diff.githubusercontent.com/NativeScript/push-plugin/projects
Wiki https://patch-diff.githubusercontent.com/NativeScript/push-plugin/wiki
Security https://patch-diff.githubusercontent.com/NativeScript/push-plugin/security
Insights https://patch-diff.githubusercontent.com/NativeScript/push-plugin/pulse
Notifications can't show in my apphttps://patch-diff.githubusercontent.com/NativeScript/push-plugin/issues/231#top
os: androidhttps://github.com/NativeScript/push-plugin/issues?q=state%3Aopen%20label%3A%22os%3A%20android%22
questionhttps://github.com/NativeScript/push-plugin/issues?q=state%3Aopen%20label%3A%22question%22
https://github.com/abinaj
https://github.com/abinaj
abinajhttps://github.com/abinaj
on Jul 9, 2018https://github.com/NativeScript/push-plugin/issues/231#issue-339430706
thishttps://market.nativescript.org/plugins/nativescript-push-notifications
https://i.stack.imgur.com/qauPM.png
https://i.stack.imgur.com/vQuZw.png
os: androidhttps://github.com/NativeScript/push-plugin/issues?q=state%3Aopen%20label%3A%22os%3A%20android%22
questionhttps://github.com/NativeScript/push-plugin/issues?q=state%3Aopen%20label%3A%22question%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.