Created Issue: 修改SinaOAuthRequestURL类 [8801]
不是接口方法的URL中.要以"/"开头.比如"return new Uri(BaseURL, "statuses/public_timeline");"要写成"return new Uri(BaseURL, "/statuses/public_timeline");"
View ArticleCreated Feature: 得到用户认证信息 [8804]
用户认证这一步主要是发送你获取的oauth_token,并且获得用户的授权。一般来说,WEB应用会简单的重定向到相应的页面,桌面应用程序会给出URL并要求用户自行验证.新浪微博开放平台的验证URL是http://api.t.sina.com.cn/oauth/authorize。要求必须以oauth作为参数,一般来说请求格式如下:http://api.t.sina.com.cn/oauth/auth...
View ArticleClosed Issue: 修改SinaOAuthRequestURL类 [8801]
不是接口方法的URL中.要以"/"开头.比如"return new Uri(BaseURL, "statuses/public_timeline");"要写成"return new Uri(BaseURL, "/statuses/public_timeline");"Comments: 测试不加"/"也是可以通过的.
View ArticleCreated Issue: 测试代码的健壮性 [8810]
有请求OAuth的时候.有些会出错的地方.请写相关方法或者属性处理相关错误的地方到最外层的错误用Try{}catch{}处理
View ArticleCreated Feature: 实现POST,HEADER方式请求OAUTH [8811]
现在的OAuthBase全是通过GET方式实现请求所以要加上通过POST和HEADER方式请求得到结果
View ArticleCommented Feature: 获取AccessToken [8802]
获取access token新浪微博开放平台access token请求地址为:http://api.t.sina.com.cn/oauth/access_token以下是请求参数列表:oauth_consumer_key - GDdmIQH6jhtmLUypg82goauth_nonce -...
View ArticleCreated Issue: 弹出窗口被浏览器阻止 [8818]
有大多浏览器弹出窗口会被阻止.修改在window.open()函数中增加一个参数,将target设置为‘self’,即改为使用: window.open(link,'_self');
View ArticleClosed Feature: 获取AccessToken [8802]
获取access token 新浪微博开放平台access token请求地址为:http://api.t.sina.com.cn/oauth/access_token以下是请求参数列表:oauth_consumer_key - GDdmIQH6jhtmLUypg82goauth_nonce -...
View ArticleReopened Feature: 获取AccessToken [8802]
获取access token 新浪微博开放平台access token请求地址为:http://api.t.sina.com.cn/oauth/access_token以下是请求参数列表:oauth_consumer_key - GDdmIQH6jhtmLUypg82goauth_nonce -...
View Article