调用微博受权接口失败

调用微博授权接口失败在调用微博授权接口的时候,提示:errorCode:10015:The redirect_uri does not match t

调用微博授权接口失败
在调用微博授权接口的时候,提示:errorCode:10015:The redirect_uri does not match the one of registration,这是什么原因? 

程序中的授权回调地址redirect_uri要和该应用实际地址保持一致。

在应用基本信息中,应用的网址是: http://www.xxx.com

在代码中 #define REDIRECTURI             @"www.xxx.com"

后来加上个http:// 好了。。。