forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhellojs-tests.ts
48 lines (35 loc) · 990 Bytes
/
hellojs-tests.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/// <reference path="hellojs.d.ts" />
hello.init({
'facebook': '<app key>',
}, {
redirect_uri: 'hello.html',
display: 'page',
});
hello.init({
facebook: '359288236870',
windows: '000000004403AD10'
});
hello('facebook').login();
hello('facebook').logout();
hello.on('auth.login', auth => {
alert('log to ' + auth.network);
}).on('auth.logout', auth => {
alert('unlog from ' + auth.network);
});
hello.getAuthResponse('facebook');
hello.login('facebook', null, () => {
var req = hello.getAuthResponse('facebook');
});
hello.logout('facebook');
var serviceInfo = hello.service('facebook');
hello("facebook").api("me").success(function(json) {
alert("Your name is " + json.name);
}).error(function () {
alert("Whoops!");
});
var sessionstart = function () {
alert("Session has started");
};
hello.on("auth.login", sessionstart);
hello.off("auth.login", sessionstart);
hello("facebook").login({ scope: "friends,photos,publish" });