-

 - e-mail

 

 -

   Flashr

 -

 LiveInternet.ru:
: 26.02.2007
:
:
: 6574

:

(0)

json for .net

, 16 2010 . 23:50 +
JSON , JS , . JSON XML . newtonjson.dll, .Net . cursor["leafname"].Value();. , .

JSON .Net AJAX API - blogsapi

PS: , .

:  
(5)

Twitter OAuth 2.0 by login-password

, 02 2010 . 16:22 +
OAuth, . OAuthUtility, blogsapi.

. , , (tokens.ConsumerKey,tokens.ConsumerSecret). (response.Token), (OAuthUtility.BuildAuthorizationUri(response.Token)) . , , , , authenticity_token. , PIN, , . , . OAuthUtility.GetAccessToken, . , .

, , 4 , 2 . - , , , . , , -, .

, , :


"" .
...

:  
(1)

, 31 2010 . 16:10 +
- . Google . , - oauthapocolypse, Basic . , 31 . BlogsAPI , .

, - .

:  
(0)

Tr.im RIP

, 25 2010 . 13:48 +
- Tr.im. , Bit.ly, . BlogsAPI, :

Copy Source | Copy HTML
  1. [TestFixture]
  2. public class Shorteners
  3. {
  4.     private void RunTest(Shortener oServer)
  5.     {
  6.         String sRet = oServer.ConvertDataTo("http://s-c.me", ItemType.FullUrl, ItemType.ShortUrl);
  7.         Assert.AreEqual(false,String.IsNullOrEmpty(sRet));
  8.         Debug.WriteLine("Returns: " + sRet);
  9.         sRet = oServer.ConvertDataTo(sRet, ItemType.ShortUrl, ItemType.FullUrl);
  10.         if(!String.IsNullOrEmpty(sRet))
  11.         {
  12.             Debug.WriteLine("BackTrace: "+sRet);
  13.         }
  14.     }
  15.  
  16.     [Test]
  17.     public void Bitly()
  18.     {
  19.         RunTest(new BitLy());
  20.     }
  21.  
  22.     [Test]
  23.     public void Cligs()
  24.     {
  25.         RunTest(new Cligs());
  26.     }
  27.  
  28.  
  29.     [Test]
  30.     public void Isgd()
  31.     {
  32.         RunTest(new Isgd());
  33.     }
  34. }

:  

 : [1]