回答編集履歴

1

アカウントキー作成変更

2016/02/14 18:13

投稿

chitoku
chitoku

スコア1610

test CHANGED
@@ -18,27 +18,21 @@
18
18
 
19
19
  function TDDestroyStatus(accountKey, tweetId) {
20
20
 
21
- TD.services.TwitterStatus.prototype._action.call({
21
+ var account = {
22
22
 
23
- account: {
23
+ getKey: function () {
24
24
 
25
- getKey: function () {
26
-
27
- return "twitter:" + accountKey,
25
+ return "twitter:" + accountKey;
28
-
29
- },
30
26
 
31
27
  },
32
28
 
33
- creatorAccount: {
29
+ };
34
30
 
35
- getKey: function () {
31
+ TD.services.TwitterStatus.prototype._action.call({
36
32
 
37
- return "twitter:" + accountKey,
33
+ account: account,
38
34
 
39
- },
35
+ creatorAccount: account,
40
-
41
- },
42
36
 
43
37
  id: tweetId,
44
38