フレックスアプリケーションからツイートを投稿するための非常に単純なコードを含むこの投稿をフォローしています。
http://rjdesignz.com/adobe-flex/twitter-api-in-air-mobile-app/
これは AIR モバイル アプリ用ですが、Flex で AIR WindowedApplication を作成しています。上記の投稿は次の外部ライブラリに依存しています。
1) AS3 oAuth ライブラリhttp://code.google.com/p/oauth-as3
2) AS3 暗号https://code.google.com/p/as3crypto/
コードは次のとおりです。
import org.istashan.oauth.OAuthConsumer;
import org.istashan.oauth.OAuthRequest;
import org.istashan.oauth.OAuthSignatureMethod_HMAC_SHA1;
import org.istashan.oauth.OAuthToken;
import org.istashan.utils.OAuthUtil;
private var requestToken:OAuthToken;
private var accessToken:OAuthToken;
private var oAuthConsumer:OAuthConsumer;
private var accessRequest:OAuthRequest;
protected var signature:OAuthSignatureMethod_HMAC_SHA1 = new OAuthSignatureMethod_HMAC_SHA1();
すべての変数について、次のエラーが発生するため、コードをコンパイルできません。
1046: Type was not found or was not a compile-time constant: OAuthConsumer.
1046: Type was not found or was not a compile-time constant: OAuthRequest.
1046: Type was not found or was not a compile-time constant: OAuthSignatureMethod_HMAC_SHA1.
1046: Type was not found or was not a compile-time constant: OAuthToken.
1046: Type was not found or was not a compile-time constant: OAuthToken.
このコンパイル時の定数の問題を解決するにはどうすればよいですか?