Netflix API Forums

API Forum

RSS Feed

.NET C# or VB Sample?

  1. ShatteredArm4 years ago

    I figured out what's going on... For some reason, OAuth.NET isn't discovering when a resource is unprotected. I hacked OAuth.NET to allow the token lookup to be circumvented and to allow you to retrieve a resource without including an access token. I'll be uploading new dlls to http://code.google.com/p/nfapi/ shortly (new source code and hacked OAuth.NET DLLs are already there).

  2. mfmanca4 years ago

    Thanks a lot!

  3. mfmanca4 years ago

    It works smoothly now! :)

  4. Stephen Cook4 years ago

    shatteredarm... how would you make a request for a title's synposis with your dll's? Assuming I already have the uri for the title's synposis

  5. ShatteredArm4 years ago

    I'll have to look into it. I haven't implemented all of the functionality, just the basic catalog and queue stuff. The CatalogTitle object has a Synopsis link; I'd imagine a request to that link will return the information. I'll try calling that to see what comes back when you call it, and wrapping it in another function call if necessary.

  6. ShatteredArm4 years ago

    Added synopsis. Just call CatalogDal.GetSynopsis with the CatalogTitle object (needs to have synopsis link set for it to work).

  7. Michael Hart4 years ago

    Jonathan Allen is also working on a .NET API. Maybe you should collaborate. See: http://developer.netflix.com/forum/read/31573.

  8. pawan3 years ago

    hi shattered arm,
    i use oauth. but when i send request_token i gives me invalid signature error everytime it gives me. can you please tell me what is doing wrong we are ? here i post my code
    string str1 = "";
    string str = "";
    string consumerKey = "kwznqsw3kcwdgs6hdyepabzb";
    string consumerSecret = "MGUpw4pvGP";
    Uri uri = new Uri("http://api.netflix.com/oauth/request_token");
    OAuthBase oAuth = new OAuthBase();
    string nonce = oAuth.GenerateNonce();
    string timeStamp = oAuth.GenerateTimeStamp();
    string sig = oAuth.GenerateSignature(uri,
    consumerKey, consumerSecret,
    string.Empty, string.Empty,
    "GET", timeStamp, nonce,
    OAuthBase.SignatureTypes.HMACSHA1, out str, out str);
    sig = HttpUtility.UrlEncode(sig);
    string strsig = "HMAC-SHA1";
    string strver = "1.0";
    StringBuilder sb = new StringBuilder("GET&");
    sb.AppendFormat(uri.ToString());
    sb.AppendFormat("?oauth_consumer_key={0}&", consumerKey);
    sb.AppendFormat("oauth_nonce={0}&", nonce);
    sb.AppendFormat("oauth_timestamp={0}&", timeStamp);
    sb.AppendFormat("oauth_signature_method={0}&", strsig);
    sb.AppendFormat("oauth_version={0}&", strver);
    sb.AppendFormat("oauth_signature={0}", sig);
    this is the we use for getting request_token and the code for oauthbase class i given it to you
    using System;
    using System.Security.Cryptography;
    using System.Collections.Generic;
    using System.Text;
    using System.Web;
    namespace OAuthClass
    {
    public class OAuthBase
    {
    /// <summary>
    /// Provides a predefined set of algorithms that are supported officially by the protocol
    /// </summary>
    public enum SignatureTypes
    {
    HMACSHA1,
    PLAINTEXT,
    RSASHA1
    }
    /// <summary>
    /// Provides an internal structure to sort the query parameter
    /// </summary>
    protected class QueryParameter
    {
    private string name = null;
    private string value = null;
    public QueryParameter(string name, string value)
    {
    this.name = name;
    this.value = value;
    }
    public string Name
    {
    get { return name; }
    }
    public string Value
    {
    get { return value; }
    }
    }
    /// <summary>
    /// Comparer class used to perform the sorting of the query parameters
    /// </summary>
    protected class QueryParameterComparer : IComparer<QueryParameter>
    {
    #region IComparer<QueryParameter> Members
    public int Compare(QueryParameter x, QueryParameter y)
    {
    if (x.Name == y.Name)
    {
    return string.Compare(x.Value, y.Value);
    }
    else
    {
    return string.Compare(x.Name, y.Name);
    }
    }
    #endregion
    }
    protected const string OAuthVersion = "1.0";
    protected const string OAuthParameterPrefix = "oauth_";
    //
    // List of know and used oauth parameters' names
    //
    protected const string OAuthConsumerKeyKey = "oauth_consumer_key";
    protected const string OAuthCallbackKey = "oauth_callback";
    protected const string OAuthVersionKey = "oauth_version";
    protected const string OAuthSignatureMethodKey = "oauth_signature_method";
    protected const string OAuthSignatureKey = "oauth_signature";
    protected const string OAuthTimestampKey = "oauth_timestamp";
    protected const string OAuthNonceKey = "oauth_nonce";
    protected const string OAuthTokenKey = "oauth_token";
    protected const string OAuthTokenSecretKey = "oauth_token_secret";
    protected const string HMACSHA1SignatureType = "HMAC-SHA1";
    protected const string PlainTextSignatureType = "PLAINTEXT";
    protected const string RSASHA1SignatureType = "RSA-SHA1";
    protected Random random = new Random();
    protected string unreservedChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~";
    /// <summary>
    /// Helper function to compute a hash value
    /// </summary>
    /// <param name="hashAlgorithm">The hashing algoirhtm used. If that algorithm needs some initialization, like HMAC and its derivatives, they should be initialized prior to passing it to this function</param>
    /// <param name="data">The data to hash</param>
    /// <returns>a Base64 string of the hash value</returns>
    private string ComputeHash(HashAlgorithm hashAlgorithm, string data)
    {
    if (hashAlgorithm == null)
    {
    throw new ArgumentNullException("hashAlgorithm");
    }
    if (string.IsNullOrEmpty(data))
    {
    throw new ArgumentNullException("data");
    }
    byte[] dataBuffer = System.Text.Encoding.ASCII.GetBytes(data);
    byte[] hashBytes = hashAlgorithm.ComputeHash(dataBuffer);
    return Convert.ToBase64String(hashBytes);
    }
    /// <summary>
    /// Internal function to cut out all non oauth query string parameters (all parameters not begining with "oauth_")
    /// </summary>
    /// <param name="parameters">The query string part of the Url</param>
    /// <returns>A list of QueryParameter each containing the parameter name and value</returns>
    private List<QueryParameter> GetQueryParameters(string parameters)
    {
    if (parameters.StartsWith("?"))
    {
    parameters = parameters.Remove(0, 1);
    }
    List<QueryParameter> result = new List<QueryParameter>();
    if (!string.IsNullOrEmpty(parameters))
    {
    string[] p = parameters.Split('&');
    foreach (string s in p)
    {
    if (!string.IsNullOrEmpty(s) && !s.StartsWith(OAuthParameterPrefix))
    {
    if (s.IndexOf('=') > -1)
    {
    string[] temp = s.Split('=');
    result.Add(new QueryParameter(temp[0], temp[1]));
    }
    else
    {
    result.Add(new QueryParameter(s, string.Empty));
    }
    }
    }
    }
    return result;
    }
    /// <summary>
    /// This is a different Url Encode implementation since the default .NET one outputs the percent encoding in lower case.
    /// While this is not a problem with the percent encoding spec, it is used in upper case throughout OAuth
    /// </summary>
    /// <param name="value">The value to Url encode</param>
    /// <returns>Returns a Url encoded string</returns>
    protected string UrlEncode(string value)
    {
    StringBuilder result = new StringBuilder();
    foreach (char symbol in value)
    {
    if (unreservedChars.IndexOf(symbol) != -1)
    {
    result.Append(symbol);
    }
    else
    {
    result.Append('%' + String.Format("{0:X2}", (int)symbol));
    }
    }
    return result.ToString();
    }
    /// <summary>
    /// Normalizes the request parameters according to the spec
    /// </summary>
    /// <param name="parameters">The list of parameters already sorted</param>
    /// <returns>a string representing the normalized parameters</returns>
    protected string NormalizeRequestParameters(IList<QueryParameter> parameters)
    {
    StringBuilder sb = new StringBuilder();
    QueryParameter p = null;
    for (int i = 0; i < parameters.Count; i++)
    {
    p = parameters[i];
    sb.AppendFormat("{0}={1}", p.Name, p.Value);

    if (i < parameters.Count - 1)
    {
    sb.Append("&");
    }
    }
    return sb.ToString();
    }
    /// <summary>
    /// Generate the signature base that is used to produce the signature
    /// </summary>
    /// <param name="url">The full url that needs to be signed including its non OAuth url parameters</param>
    /// <param name="consumerKey">The consumer key</param>
    /// <param name="token">The token, if available. If not available pass null or an empty string</param>
    /// <param name="tokenSecret">The token secret, if available. If not available pass null or an empty string</param>
    /// <param name="httpMethod">The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc)</param>
    /// <param name="signatureType">The signature type. To use the default values use <see cref="OAuthBase.SignatureTypes">OAuthBase.SignatureTypes</see>.</param>
    /// <returns>The signature base</returns>
    public string GenerateSignatureBase(Uri url, string consumerKey, string token, string tokenSecret, string httpMethod, string timeStamp, string nonce, string signatureType, out string normalizedUrl, out string normalizedRequestParameters)
    {
    if (token == null)
    {
    token = string.Empty;
    }
    if (tokenSecret == null)
    {
    tokenSecret = string.Empty;
    }
    if (string.IsNullOrEmpty(consumerKey))
    {
    throw new ArgumentNullException("consumerKey");
    }
    if (string.IsNullOrEmpty(httpMethod))
    {
    throw new ArgumentNullException("httpMethod");
    }
    if (string.IsNullOrEmpty(signatureType))
    {
    throw new ArgumentNullException("signatureType");
    }
    normalizedUrl = null;
    normalizedRequestParameters = null;
    List<QueryParameter> parameters = GetQueryParameters(url.Query);
    parameters.Add(new QueryParameter(OAuthVersionKey, OAuthVersion));
    parameters.Add(new QueryParameter(OAuthNonceKey, nonce));
    parameters.Add(new QueryParameter(OAuthTimestampKey, timeStamp));
    parameters.Add(new QueryParameter(OAuthSignatureMethodKey, signatureType));
    parameters.Add(new QueryParameter(OAuthConsumerKeyKey, consumerKey));
    if (!string.IsNullOrEmpty(token))
    {
    parameters.Add(new QueryParameter(OAuthTokenKey, token));
    }
    parameters.Sort(new QueryParameterComparer());
    normalizedUrl = string.Format("{0}://{1}", url.Scheme, url.Host);
    if (!((url.Scheme == "http" && url.Port == 80) || (url.Scheme == "https" && url.Port == 443)))
    {
    normalizedUrl += ":" + url.Port;
    }
    normalizedUrl += url.AbsolutePath;
    normalizedRequestParameters = NormalizeRequestParameters(parameters);
    StringBuilder signatureBase = new StringBuilder();
    signatureBase.AppendFormat("{0}&", httpMethod.ToUpper());
    signatureBase.AppendFormat("{0}&", UrlEncode(normalizedUrl));
    signatureBase.AppendFormat("{0}", UrlEncode(normalizedRequestParameters));
    return signatureBase.ToString();
    }
    /// <summary>
    /// Generate the signature value based on the given signature base and hash algorithm
    /// </summary>
    /// <param name="signatureBase">The signature based as produced by the GenerateSignatureBase method or by any other means</param>
    /// <param name="hash">The hash algorithm used to perform the hashing. If the hashing algorithm requires initialization or a key it should be set prior to calling this method</param>
    /// <returns>A base64 string of the hash value</returns>
    public string GenerateSignatureUsingHash(string signatureBase, HashAlgorithm hash)
    {
    return ComputeHash(hash, signatureBase);
    }
    /// <summary>
    /// Generates a signature using the HMAC-SHA1 algorithm
    /// </summary>
    /// <param name="url">The full url that needs to be signed including its non OAuth url parameters</param>
    /// <param name="consumerKey">The consumer key</param>
    /// <param name="consumerSecret">The consumer seceret</param>
    /// <param name="token">The token, if available. If not available pass null or an empty string</param>
    /// <param name="tokenSecret">The token secret, if available. If not available pass null or an empty string</param>
    /// <param name="httpMethod">The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc)</param>
    /// <returns>A base64 string of the hash value</returns>
    public string GenerateSignature(Uri url, string consumerKey, string consumerSecret, string token, string tokenSecret, string httpMethod, string timeStamp, string nonce, out string normalizedUrl, out string normalizedRequestParameters)
    {
    return GenerateSignature(url, consumerKey, consumerSecret, token, tokenSecret, httpMethod, timeStamp, nonce, SignatureTypes.HMACSHA1, out normalizedUrl, out normalizedRequestParameters);
    }
    /// <summary>
    /// Generates a signature using the specified signatureType
    /// </summary>
    /// <param name="url">The full url that needs to be signed including its non OAuth url parameters</param>
    /// <param name="consumerKey">The consumer key</param>
    /// <param name="consumerSecret">The consumer seceret</param>
    /// <param name="token">The token, if available. If not available pass null or an empty string</param>
    /// <param name="tokenSecret">The token secret, if available. If not available pass null or an empty string</param>
    /// <param name="httpMethod">The http method used. Must be a valid HTTP method verb (POST,GET,PUT, etc)</param>
    /// <param name="signatureType">The type of signature to use</param>
    /// <returns>A base64 string of the hash value</returns>
    public string GenerateSignature(Uri url, string consumerKey, string consumerSecret, string token, string tokenSecret, string httpMethod, string timeStamp, string nonce, SignatureTypes signatureType, out string normalizedUrl, out string normalizedRequestParameters)
    {
    normalizedUrl = null;
    normalizedRequestParameters = null;
    switch (signatureType)
    {
    case SignatureTypes.PLAINTEXT:
    return HttpUtility.UrlEncode(string.Format("{0}&{1}", consumerSecret, tokenSecret));
    case SignatureTypes.HMACSHA1:
    string signatureBase = GenerateSignatureBase(url, consumerKey, token, tokenSecret, httpMethod, timeStamp, nonce, HMACSHA1SignatureType, out normalizedUrl, out normalizedRequestParameters);
    HMACSHA1 hmacsha1 = new HMACSHA1();
    hmacsha1.Key = Encoding.ASCII.GetBytes(string.Format("{0}&{1}", UrlEncode(consumerSecret), string.IsNullOrEmpty(tokenSecret) ? "" : UrlEncode(tokenSecret)));
    return GenerateSignatureUsingHash(signatureBase, hmacsha1);
    case SignatureTypes.RSASHA1:
    throw new NotImplementedException();
    default:
    throw new ArgumentException("Unknown signature type", "signatureType");
    }
    }
    /// <summary>
    /// Generate the timestamp for the signature
    /// </summary>
    /// <returns></returns>
    public virtual string GenerateTimeStamp()
    {
    // Default implementation of UNIX time of the current UTC time
    TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
    string timeStamp = ts.TotalSeconds.ToString();
    timeStamp = timeStamp.Substring(0, timeStamp.IndexOf("."));
    return timeStamp;
    }
    /// <summary>
    /// Generate a nonce
    /// </summary>
    /// <returns></returns>
    public virtual string GenerateNonce()
    {
    // Just a simple implementation of a random number between 123400 and 9999999
    return random.Next(123400, 9999999).ToString();
    }
    }
    }

  9. pawan3 years ago

    hi,
    i use your NFAPI dll but i got error on getting oauthservice "Could not find section 'oauth.net.consumer' in the configuration file associated with this domain."

    thanks
    pawan
    filmjamr.com

  10. pawan3 years ago

    hi,
    now i am getting a request_token and go to step for user authorization here link for user authorization
    https://api-user.netflix.com/oauth/login?oauth_consumer_key=key&applica
    tion_name=filmjamr&oauth_token=h96us4j2t9xshmc27pjsuvn3&oauth_callback=http://filmjamr.com

    now i want to know that what i get when it callback to this url if this gives access_token then in what form mean (in xml or a querystring) and when i get this access_token then how to get user_id

    thanks
    pawan
    http:\\filmjamr.com

  11. pawan3 years ago

    hi,
    i am getting request_token and access_token but not getting userid because this function rq_OnReceiveAccessToken not fired how this is fired
    here my code
    private OAuthResource GetAccessKey(string uri, NameValueCollection parameters)
    {
    OAuthRequest rq = OAuthRequest.Create(
    new Uri(uri),
    _getService,
    _requestToken,
    _accessToken); // Create the request


    rq.OnReceiveAccessToken +=new EventHandler<AccessTokenReceivedEventArgs>(rq_OnReceiveAccessToken);
    OAuthResponse response = rq.GetResource(parameters); //get the response

    if (response.HasProtectedResource)
    {
    return response.ProtectedResource;
    }
    else
    {
    _requestToken = response.Token; //if you got here, it means you only have the request token and need to direct the user to the login page.

    throw new OAuthNotAuthorizedException();
    }
    }

    void rq_OnReceiveAccessToken(object sender, AccessTokenReceivedEventArgs e)
    {
    _accessToken = e.AccessToken;
    _UserID = e.AdditionalParameters["user_id"];

    OAuthRequest req = sender as OAuthRequest;
    req.ResourceUri = new Uri(req.ResourceUri.AbsoluteUri.Replace("{userid}", _UserID)); //TODO
    }


    thanks & regards
    Pawan
    http:\\filmjamr.com

  12. Michael Hart3 years ago

    I'm not familiar with this library, but you can also get the user resource URL by calling users/current, using the new access token for auth. See http://developer.netflix.com/blog/read/This_Weeks_API_Update_a_Note_on_Interfaces for more info.

  13. Elfie3 years ago

    ShatteredArm, I checked out your source using SVN and am trying to run your application EXACTLY as-is with no changes whatsoever. The ONLY thing I have edited is the App.config to include my values for apikey, secret, and applicationname. But I keep getting "The remote server returned an error: (401) Unauthorized." on line 242 in NetflixService.cs. Any advice?

  14. Elfie3 years ago

    ShatteredArm, nevermind! I had to delete the existing tokens file and that made it work perfectly.

  15. pawan3 years ago

    anybody is there pls help.I have used Shattered Arm project but after getting Access token i m unable to get the userid.Will it be returned with the Access token or one more step i have to do to get userid ? i have already posted my code above please help me friends i m stuck how to get the user id .help......................................

    regards
    pawan

  16. pawan3 years ago

    hi elfie can you give me your code how to use oauth for netflix i am stuck because i can'nt get userid can you help me
    regards
    pawan

  17. pawan3 years ago

    anyone tell me any dll for how to use netflix data with using oauth and give any code to fetch data from netflix

  18. Michael Hart3 years ago

    Pawan, you might check out how some of the libraries on the resource page do this. I'm sure there is likely source available for some of them.

  19. pawan3 years ago

    hi michael i use the nfapi dll and code which provide by shattered arm but i am stuck when i am getting access_token it does not return userid i don't know but how i get userid

  20. Unknown3 years ago

    Pawan, I've got a wrapper around the API that you can use as is or as a sample for writing your own.

    http://www.codeplex.com/WrapNetflix/Release/ProjectReleases.aspx?ReleaseId=20682

    Jonathan / grauenwolf@gmail.com

  21. pawan3 years ago

    Hi Allen
    Thanx For Provideing me the link and i have dowbloaded the files from http://www.codeplex.com/WrapNetflix/Release/ProjectReleases.aspx?ReleaseId=20682

    but Allene when I m running it in by adding them in solution because the solution file is not there then it is giving me error for "My.Settings.ConsumerKey","My.Settings.ConsumerSecret" That they are not the member of "WindowsApplication1.My.setting".
    Am i wrong some where?.pls if you can provide me any sample application or documentation for using this NetflixBinaries_0.4.

    Best Regards
    Pawan Bali

  22. Chris3 years ago

    I'm working with Visual Studio 2008/Visual Basic and the oAuth.net library.

    I'm having difficulty with the authentication token. My code sends the user to the authentication site with a well formed authentication request. The site then redirects (via the browser and a custom url handler) back to my application which catches the oAuth string as a StartupNextInstance argument.

    My question: how do I store the returned oAuth string as a IToken? I cannot find a IToken class method that builds a IToken from a simple string. Sounds like a simple problem, but I'm stuck.

    Thank you,

  23. leefrank406 months ago

    Hi ShatteredArm,

    If I know a NetFlix subscriber's user id and password, how can I use your NFAPI API to create a NetflixService service to access protected data, such as, Queue? I'm working on a WPF application and do not want the user going to NETFLIX login page and authorize the application in NETFLIX web page.

    Frank

  24. koukou2 months ago

    http://www.coachoutletpursese.com/ Coach Purses Outlet http://www.coachoutletpursese.com/ Coach handbags outlet http://www.coachoutlet-onlinepurse.com/ Coach Outlet Online http://www.coachoutlet-onlinepurse.com/ Coach Purses Outlet

[ Previous | Page 2 of 3 | Next ]