i want to develop application like hootsuite . com
Schedule the FaceBook wall using ASP.Net
now i am geting this error
my new facebook code is : AQCk3-RCylaaLxWxl9HInFJYAP0Cm-v0nXjWhwEI9cswEMXuKvibzJWYb6tlSqPlFYbpYapEiP0t1Sir6f2A76QR67LcVNXOSq-cfTEW-56HXNIJUFkvJsjnLU-Brs_x6YtAnEs3H6bBOjGwq8zCWhkMbXK8I6kag6HPqU406DzenPZx3QyYJzUjFrl9_zbJrLK7qv4CsifWrtL19oKQaIDU#_=_
so, my url like https://graph.facebook.com/oauth/access_token?client_id=134941433319444&client_secret=be06862cbacb4f84f5112ebcc4bc3b2c&grant_type=fb_exchange_token&fb_exchange_token=AQCk3-RCylaaLxWxl9HInFJYAP0Cm-v0nXjWhwEI9cswEMXuKvibzJWYb6tlSqPlFYbpYapEiP0t1Sir6f2A76QR67LcVNXOSq-cfTEW-56HXNIJUFkvJsjnLU-Brs_x6YtAnEs3H6bBOjGwq8zCWhkMbXK8I6kag6HPqU406DzenPZx3QyYJzUjFrl9_zbJrLK7qv4CsifWrtL19oKQaIDU#_=_
but , still i get error like
{
"error": {
"message": "Malformed access token AQCk3-RCylaaLxWxl9HInFJYAP0Cm-v0nXjWhwEI9cswEMXuKvibzJWYb6tlSqPlFYbpYapEiP0t1Sir6f2A76QR67LcVNXOSq-cfTEW-56HXNIJUFkvJsjnLU-Brs_x6YtAnEs3H6bBOjGwq8zCWhkMbXK8I6kag6HPqU406DzenPZx3QyYJzUjFrl9_zbJrLK7qv4CsifWrtL19oKQaIDU",
"type": "OAuthException",
"code": 190
}
}
Just a guess, but you need to URL-encode your access token.
Your token ends with IDU#_=_, and the error message reports that it ends with IDU. This is because # is not valid in a query-string. Your URL should end with IDU%23_%3d_ instead.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer