File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
messaging/services/service-create Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 8
8
$ auth_token = 'your_auth_token '
9
9
$ twilio = new Twilio ($ account_sid , $ auth_token );
10
10
11
- $ service = $ twilio ->messaging ->v1 ->services ->create (
12
- "My First Service " ,
13
- array (
14
- 'statusCallback ' => "http://requestb.in/1234abcd "
15
- )
16
- );
11
+ $ service = $ twilio ->messaging ->v1 ->services ->create ("My First Service " ,
12
+ array ('statusCallback ' => "http://requestb.in/1234abcd " )
13
+ );
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ public static void main(String[] args) {
10
10
// Initialize the client
11
11
Twilio .init (ACCOUNT_SID , AUTH_TOKEN );
12
12
13
- Service service = Service .creator ("My Company " ).create ();
13
+ Service service = Service .creator ("My First Service " ).create ();
14
14
}
15
15
}
You can’t perform that action at this time.
0 commit comments