0
私はかなり多くGoogleを持っていますが、例やチュートリアルが見つからないので、皆さんはsmfフォーラムにログインするコードを考えてもらうことができますか?iPhone用SMFフォーラムのログイン
私の推測では、ASIIHTTPRequestを使うべきですか?
私はかなり多くGoogleを持っていますが、例やチュートリアルが見つからないので、皆さんはsmfフォーラムにログインするコードを考えてもらうことができますか?iPhone用SMFフォーラムのログイン
私の推測では、ASIIHTTPRequestを使うべきですか?
__block ASIFormDataRequest *request;
//login to SMF - this works
request = [ASIFormDataRequest requestWithURL: [NSURL URLWithString: @"https://imtgapp.com/forum/index.php?action=login2"]];
[request setPostValue: @"test" forKey: @"user"];
[request setPostValue: @"12345" forKey: @"passwrd"];
[request setPostValue: @"1" forKey: @"cookieneverexp"];
[request setPostValue: @"" forKey: @"hash_passwrd"]; //TODO ?
[request setValidatesSecureCertificate: NO];
[request setCompletionBlock: ^{
//TODO verify if login was successful
NSLog(@"%@", [request responseString]);
}];
[request setFailedBlock: ^{
NSLog(@"Unresolved error %@, %@", [request error], [[request error] userInfo]);
}];
[request startAsynchronous];
あなたはSSI機能を使用することができます:http://simplemachines.org/community/ssi_examples.php
<?php
require("SSI.php");
// Shows a login box only when user is not logged in
ssi_login();
?>
...
SMFのフォーラムが何でありますか? – KevinDTimm
シンプルマシンフォーラム www.simplemachines.org – vburojevic