nemiro-net / nemiro.oauth

Nemiro.OAuth is a class library for authorization via OAuth protocol in .NET Framework

Home Page:http://oauth.nemiro.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ayudaaaaaaa

luiscarlosfertl opened this issue · comments

Cunado quiero conectar a Provider: LinkedIn, me da el sigueinte error
Anulada la solicitud: No se puede crear un canal seguro SSL/TLS.

        If OAuthManager.IsRegisteredClient("LinkedIn") = False Then
            OAuthManager.RegisterClient("LinkedIn",
                            "xxxx",
                            "xxxx")
        End If

    Try
        Dim provider As String = "LinkedIn"
        Dim returnUrl As String = New Uri(Request.Url, "login_social.aspx").AbsoluteUri
        OAuthWeb.RedirectToAuthorization(provider, returnUrl)
    Catch ex As Exception
        LiteralError.Text = "<strong>Existen los Siguientes Errores en el Formulario</strong><br>" & ex.Message
        ScriptManager.RegisterStartupScript(Me, Me.GetType(), "msjError", "msjError();", True)

    End Try