Hi All: I have a problem when I was trying to get the auth code. I am using WPF and tring to get the "auth-code-input" from the webpage that dropbox direct to. But the when I was using the following code it alway get null. For now, I set the redirct_uri to empty, does this matter?
mshtml.IHTMLDocument3 doc3 = WebBrowserAuth.Document as mshtml.IHTMLDocument3;
var myHtmlElement = doc3.getElementById("auth-code-input");
string strAuthCode = myHtmlElement.getAttribute("value");
Many thanks in advance!