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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//
// WBHttpRequest+WeiboGame.h
// WeiboSDK
//
// Created by insomnia on 15/3/11.
// Copyright (c) 2015年 SINA iOS Team. All rights reserved.
//
#import "WBHttpRequest.h"
@interface WBHttpRequest (WeiboGame)
/*!
@method
@abstract
新增游戏对象。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)addGameObject:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
游戏成就对象入库/更新。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)addGameAchievementObject:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
用户获得游戏成就关系入库/更新。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)addGameAchievementGain:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
用户游戏得分关系入库/更新。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)addGameScoreGain:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
读取玩家游戏分数。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)requestForGameScore:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
读取玩家互粉好友游戏分数。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)requestForFriendsGameScore:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
/*!
@method
@abstract
读取玩家获取成就列表。 在http://open.weibo.com/wiki/%E6%B8%B8%E6%88%8F%E6%8E%A5%E5%8F%A3 中有关于该接口的细节说明。
@param userID 当前授权用户的uid
@param accessToken 当前授权用户的accessToken
@param otherProperties 一个NSDictionary字典,承载任意想额外添加到请求中的参数。
@param queue 指定发送请求的NSOperationQueue,如果这个参数为nil,则请求会发送在MainQueue( [NSOperationQueue mainQueue] )中。
@param handler 完成请求后会回调handler,处理完成请求后的逻辑。
*/
+ (WBHttpRequest *)requestForGameAchievementGain:(NSString*)userID
withAccessToken:(NSString*)accessToken
andOtherProperties:(NSDictionary*)otherProperties
queue:(NSOperationQueue*)queue
withCompletionHandler:(WBRequestHandler)handler;
@end