他のサイトから、ユーザーのステータスなど、ロータス接続サイトからデータを取得する必要があります。たとえば、Java経由で蓮との接続をセットアップしようとしています
> server = "https://" + path + param + "&format=full";
> URL profiles_url = new URL(server);
> // Open the URL: throws exception if not found
> HttpURLConnection profiles_conn = HttpURLConnection)profiles_url.openConnection();
> profiles_conn.connect();
> // Process the Atom feed in the response content
> readResponse(profiles_url.openStream(),args[0]);
しかし、私は常に応答を受け取ります: HTTP/1.1 401 Unauthorized 提案をお願いします。