Skip to content

TwilioDevEd/notifications-quickstart-objc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twilio Notify Quickstart for Objective-C

This application should give you a ready-made starting point for writing your own notification-integrated apps with Twilio Notify.

Gather account information

We need to get the necessary information from our Twilio account. Here's what we'll need:

Config Value Description
Service Instance SID A service instance where all the data for our application is stored and scoped. You can create one in the console.

You will also need to create a push credential on the Twilio Console, and then configure it on your Notify service. You can upload your push credentials here. If you haven't set up the Apple Push Notification Service (APNS) for your app, you can do so by following the iOS push notification guide.

Set up Twilio Functions

The sample mobile app is already set up to communicate with Twilio Functions to register a device for notifications. You just need to create two Functions in your account from a template, and then specify the URL for one of those Twilio Functions in the source code to the app.

To get started with this, create a new Twilio Function on the Twilio Console's Manage Functions page. Choose the Twilio Notify Quickstart template from the list of templates. Use the Notify service SID you collected in the previous section for the only required configuration parameter for the template.

Configure the Mobile App

You'll have a subdomain associated with your Twilio account - each account has a different one.

In the ViewController.m file, on this line,

static NSString * serverURL = @"https://YOUR_DOMAIN_HERE.twil.io/register-binding";

Change the serverURL to match your Twilio Functions subdomain, then compile and run the app on an actual device - Apple's push notification service does not work on the Simulator. Enter an identity in the text field that's presented.

Note that user identities for Notify should not be Personally Identifiable Information (PII), such as names.

Once you tap register, the app will register your device with your Notify service and return a JSON response object to the app if successful.

After that, send a notification to the identity you registered so that you will receive a push notification in your app.

You can call the Twilio Function directly with an identity parameter and a body parameter, like this:

https://sturdy-concrete-1657.twil.io/send-notification?identity=user1&body=Hello

That's it!

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published