3

私は、rapidshare.com API を使い始めました。API呼び出しからの返信を読むための最良の方法は何だろうと思っています。

正直なところ、API はいたるところにあると思います。一部の返信はカンマ区切りで問題ありません。アカウント情報の応答に問題があります。これはカンマ区切りではなく、フィールドが常に同じ順序であるとは限りません。

応答の例を次に示します。 accountid=123456 type=prem servertime=1260968445 addtime=1230841165 validuntil=1262377165 username=DOWNLOADER directstart=1 protectfiles=0 rsantihack=0 plustrafficmode=0 mirrors= jsconfig=1 email=take@hike.com lot= 0 fpoints=12071 ppoints=10 curfiles=150 curspace=800426795 bodkb=5000000 premkbleft=23394289 ppointrate=93

私は正規表現がここに行く方法だと思っています。値を含むすべての応答をキャッチするように見える私の表現は次のとおりです。 |bodkb|premkbleft|ppointrate|refstring|cookie)\=[\w._@]+

データの順序がランダムであると見なされる場合、どの値がどれであるかをどのように判断すればよいでしょうか?

他の人がこれにどのように取り組んでいるのか、私はただ興味があります。

ありがとう、

コナー

4

3 に答える 3

2

私はc#を想定しています。

string[] s = @"accountid=123456 type=prem servertime=1260968445 addtime=1230841165 validuntil=1262377165 username=DOWNLOADER directstart=1 protectfiles=0 rsantihack=0 plustrafficmode=0 mirrors= jsconfig=1 email=take@hike.com lots=0 fpoints=12071 ppoints=10 curfiles=150 curspace=800426795 bodkb=5000000 premkbleft=23394289 ppointrate=93".Split(" ");
var params = new Dictionary<string, string>();
foreach(var l in s)
{
 var tmp = l.Split("=");
 params[tmp[0]] = params[tmp[1]];
}

(バグが含まれている可能性があります..しかし、アイデアは明白ですか?)

于 2009-12-16T13:33:57.190 に答える
0

これが私がしたことです。

これは基本的に、Yossarianのコードの動作バージョンです。

            // Command to send to API
        String command = "sub=getaccountdetails_v1&type=prem&login="+Globals.username+"&password="+Globals.password;

        // This will return the response from rapidshare API request.
        // It just performs @ webrequest and returs the raw text/html. It's only a few lines. Sorry I haven't included it here.
        String input  = executeRequest(command);

        input = input.Trim();
        string[] s = input.Split('\n');

        Dictionary<string,string> terms = new Dictionary<string, string>();
        foreach(var l in s)
        {
             String[] tmp = l.Split('=');
             terms.Add(tmp[0], tmp[1]);
        }
        foreach (KeyValuePair<String, String> term in terms)
        {
            txtOutput.Text += term.Key + " :: " + term.Value+"\n";
        }

助けてくれてありがとう。

于 2009-12-17T21:45:20.890 に答える
0

キーで値にアクセスできるように、これをある種の Dictionary オブジェクトに分割することをお勧めします。

.NET 3.5 で動作する C# コンソール アプリケーションの例を次に示します。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace SO
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = @"accountid=123456 type=prem servertime=1260968445";

            string pattern = @"(?<Key>[^ =]+)(?:\=)(?<Value>[^ ]+)(?=\ ?)";

            Dictionary<string, string> fields = 
                (from Match m in Regex.Matches(input, pattern)
                   select new
                   {
                       key = m.Groups["Key"].Value,
                       value = m.Groups["Value"].Value
                   }
                ).ToDictionary(p => p.key, p => p.value);

            //iterate over all fields
            foreach (KeyValuePair<string, string> field in fields)
            {
                Console.WriteLine(
                    string.Format("{0} : {1}", field.Key, field.Value)
                );
            }

            //get value from a key
            Console.WriteLine(
                string.Format("{0} : {1}", "type", fields["type"])
            );

        }
    }
}

PHP の別の例へのリンク:

Rapidshare API を使用してアカウントの詳細を取得する方法 ?? PHPの質問

于 2009-12-16T14:00:13.553 に答える