CIでアプリケーションを構築しています。ここでは、サードパーティの Web サイト/URL からの API コードが必要です。そのコードをコントローラーに受け取る方法がわかりません。
$user_email = "jondoe@appsapi.com.au"
Example - https://www.sample.com.au/api/apps/auth{$user_email}
この例のドメインをブラウザーに入力すると、API キーが提供されます。同様に -A9D5w9pL
それをコントローラーに取り込む方法。
コントローラ -
public function auth_with_api() {
//https://www.sample.com.au/api/apps/auth{$user_email}
// here I require the API key. How can I receive it here.
}