├── .gitignore ├── LICENSE ├── README.md ├── apigen.neon ├── composer.json ├── docs ├── 404.html ├── class-TwitterOAuth.Auth.ApplicationOnlyAuth.html ├── class-TwitterOAuth.Auth.AuthAbstract.html ├── class-TwitterOAuth.Auth.SingleUserAuth.html ├── class-TwitterOAuth.Common.Curl.html ├── class-TwitterOAuth.Exception.CurlException.html ├── class-TwitterOAuth.Exception.FileNotFoundException.html ├── class-TwitterOAuth.Exception.FileNotReadableException.html ├── class-TwitterOAuth.Exception.MissingCredentialsException.html ├── class-TwitterOAuth.Exception.TwitterException.html ├── class-TwitterOAuth.Exception.UnsupportedMimeException.html ├── class-TwitterOAuth.Serializer.ArraySerializer.html ├── class-TwitterOAuth.Serializer.JsonSerializer.html ├── class-TwitterOAuth.Serializer.ObjectSerializer.html ├── class-TwitterOAuth.Serializer.SerializerInterface.html ├── class-TwitterOAuth.Serializer.TextSerializer.html ├── elementlist.js ├── index.html ├── namespace-TwitterOAuth.Auth.html ├── namespace-TwitterOAuth.Common.html ├── namespace-TwitterOAuth.Exception.html ├── namespace-TwitterOAuth.Serializer.html ├── namespace-TwitterOAuth.html ├── resources │ ├── collapsed.png │ ├── combined.js │ ├── footer.png │ ├── inherit.png │ ├── resize.png │ ├── sort.png │ ├── style.css │ ├── tree-cleaner.png │ ├── tree-hasnext.png │ ├── tree-last.png │ └── tree-vertical.png ├── source-class-TwitterOAuth.Auth.ApplicationOnlyAuth.html ├── source-class-TwitterOAuth.Auth.AuthAbstract.html ├── source-class-TwitterOAuth.Auth.SingleUserAuth.html ├── source-class-TwitterOAuth.Common.Curl.html ├── source-class-TwitterOAuth.Exception.CurlException.html ├── source-class-TwitterOAuth.Exception.FileNotFoundException.html ├── source-class-TwitterOAuth.Exception.FileNotReadableException.html ├── source-class-TwitterOAuth.Exception.MissingCredentialsException.html ├── source-class-TwitterOAuth.Exception.TwitterException.html ├── source-class-TwitterOAuth.Exception.UnsupportedMimeException.html ├── source-class-TwitterOAuth.Serializer.ArraySerializer.html ├── source-class-TwitterOAuth.Serializer.JsonSerializer.html ├── source-class-TwitterOAuth.Serializer.ObjectSerializer.html ├── source-class-TwitterOAuth.Serializer.SerializerInterface.html ├── source-class-TwitterOAuth.Serializer.TextSerializer.html └── tree.html ├── examples ├── ApplicationOnly_BearerToken.php ├── ApplicationOnly_Minimal.php ├── ApplicationOnly_With_cURL_Options.php ├── SingleUser.php ├── SingleUser_RequestToken.php ├── SingleUser_UploadingMedia.php └── SingleUser_With_cURL_Options.php ├── src ├── Auth │ ├── ApplicationOnlyAuth.php │ ├── AuthAbstract.php │ └── SingleUserAuth.php ├── Certificates │ ├── cacert.pem │ └── rootca.pem ├── Common │ └── Curl.php ├── Exception │ ├── CurlException.php │ ├── FileNotFoundException.php │ ├── FileNotReadableException.php │ ├── MissingCredentialsException.php │ ├── TwitterException.php │ └── UnsupportedMimeException.php └── Serializer │ ├── ArraySerializer.php │ ├── JsonSerializer.php │ ├── ObjectSerializer.php │ ├── SerializerInterface.php │ └── TextSerializer.php └── tests ├── ApplicationOnly.php ├── SingleUser.php ├── TwitterIcon.png ├── TwitterLogo.jpg └── TwitterUpload.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/README.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/apigen.neon -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/composer.json -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Auth.ApplicationOnlyAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Auth.ApplicationOnlyAuth.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Auth.AuthAbstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Auth.AuthAbstract.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Auth.SingleUserAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Auth.SingleUserAuth.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Common.Curl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Common.Curl.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.CurlException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.CurlException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.FileNotFoundException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.FileNotFoundException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.FileNotReadableException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.FileNotReadableException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.MissingCredentialsException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.MissingCredentialsException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.TwitterException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.TwitterException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Exception.UnsupportedMimeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Exception.UnsupportedMimeException.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Serializer.ArraySerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Serializer.ArraySerializer.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Serializer.JsonSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Serializer.JsonSerializer.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Serializer.ObjectSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Serializer.ObjectSerializer.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Serializer.SerializerInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Serializer.SerializerInterface.html -------------------------------------------------------------------------------- /docs/class-TwitterOAuth.Serializer.TextSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/class-TwitterOAuth.Serializer.TextSerializer.html -------------------------------------------------------------------------------- /docs/elementlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/elementlist.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/namespace-TwitterOAuth.Auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/namespace-TwitterOAuth.Auth.html -------------------------------------------------------------------------------- /docs/namespace-TwitterOAuth.Common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/namespace-TwitterOAuth.Common.html -------------------------------------------------------------------------------- /docs/namespace-TwitterOAuth.Exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/namespace-TwitterOAuth.Exception.html -------------------------------------------------------------------------------- /docs/namespace-TwitterOAuth.Serializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/namespace-TwitterOAuth.Serializer.html -------------------------------------------------------------------------------- /docs/namespace-TwitterOAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/namespace-TwitterOAuth.html -------------------------------------------------------------------------------- /docs/resources/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/collapsed.png -------------------------------------------------------------------------------- /docs/resources/combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/combined.js -------------------------------------------------------------------------------- /docs/resources/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/footer.png -------------------------------------------------------------------------------- /docs/resources/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/inherit.png -------------------------------------------------------------------------------- /docs/resources/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/resize.png -------------------------------------------------------------------------------- /docs/resources/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/sort.png -------------------------------------------------------------------------------- /docs/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/style.css -------------------------------------------------------------------------------- /docs/resources/tree-cleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/tree-cleaner.png -------------------------------------------------------------------------------- /docs/resources/tree-hasnext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/tree-hasnext.png -------------------------------------------------------------------------------- /docs/resources/tree-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/tree-last.png -------------------------------------------------------------------------------- /docs/resources/tree-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/resources/tree-vertical.png -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Auth.ApplicationOnlyAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Auth.ApplicationOnlyAuth.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Auth.AuthAbstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Auth.AuthAbstract.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Auth.SingleUserAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Auth.SingleUserAuth.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Common.Curl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Common.Curl.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.CurlException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.CurlException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.FileNotFoundException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.FileNotFoundException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.FileNotReadableException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.FileNotReadableException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.MissingCredentialsException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.MissingCredentialsException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.TwitterException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.TwitterException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Exception.UnsupportedMimeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Exception.UnsupportedMimeException.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Serializer.ArraySerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Serializer.ArraySerializer.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Serializer.JsonSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Serializer.JsonSerializer.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Serializer.ObjectSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Serializer.ObjectSerializer.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Serializer.SerializerInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Serializer.SerializerInterface.html -------------------------------------------------------------------------------- /docs/source-class-TwitterOAuth.Serializer.TextSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/source-class-TwitterOAuth.Serializer.TextSerializer.html -------------------------------------------------------------------------------- /docs/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/docs/tree.html -------------------------------------------------------------------------------- /examples/ApplicationOnly_BearerToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/ApplicationOnly_BearerToken.php -------------------------------------------------------------------------------- /examples/ApplicationOnly_Minimal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/ApplicationOnly_Minimal.php -------------------------------------------------------------------------------- /examples/ApplicationOnly_With_cURL_Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/ApplicationOnly_With_cURL_Options.php -------------------------------------------------------------------------------- /examples/SingleUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/SingleUser.php -------------------------------------------------------------------------------- /examples/SingleUser_RequestToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/SingleUser_RequestToken.php -------------------------------------------------------------------------------- /examples/SingleUser_UploadingMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/SingleUser_UploadingMedia.php -------------------------------------------------------------------------------- /examples/SingleUser_With_cURL_Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/examples/SingleUser_With_cURL_Options.php -------------------------------------------------------------------------------- /src/Auth/ApplicationOnlyAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Auth/ApplicationOnlyAuth.php -------------------------------------------------------------------------------- /src/Auth/AuthAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Auth/AuthAbstract.php -------------------------------------------------------------------------------- /src/Auth/SingleUserAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Auth/SingleUserAuth.php -------------------------------------------------------------------------------- /src/Certificates/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Certificates/cacert.pem -------------------------------------------------------------------------------- /src/Certificates/rootca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Certificates/rootca.pem -------------------------------------------------------------------------------- /src/Common/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Common/Curl.php -------------------------------------------------------------------------------- /src/Exception/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/CurlException.php -------------------------------------------------------------------------------- /src/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/FileNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/FileNotReadableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/FileNotReadableException.php -------------------------------------------------------------------------------- /src/Exception/MissingCredentialsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/MissingCredentialsException.php -------------------------------------------------------------------------------- /src/Exception/TwitterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/TwitterException.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedMimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Exception/UnsupportedMimeException.php -------------------------------------------------------------------------------- /src/Serializer/ArraySerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Serializer/ArraySerializer.php -------------------------------------------------------------------------------- /src/Serializer/JsonSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Serializer/JsonSerializer.php -------------------------------------------------------------------------------- /src/Serializer/ObjectSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Serializer/ObjectSerializer.php -------------------------------------------------------------------------------- /src/Serializer/SerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Serializer/SerializerInterface.php -------------------------------------------------------------------------------- /src/Serializer/TextSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/src/Serializer/TextSerializer.php -------------------------------------------------------------------------------- /tests/ApplicationOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/tests/ApplicationOnly.php -------------------------------------------------------------------------------- /tests/SingleUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/tests/SingleUser.php -------------------------------------------------------------------------------- /tests/TwitterIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/tests/TwitterIcon.png -------------------------------------------------------------------------------- /tests/TwitterLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/tests/TwitterLogo.jpg -------------------------------------------------------------------------------- /tests/TwitterUpload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoper/TwitterOAuth/HEAD/tests/TwitterUpload.jpg --------------------------------------------------------------------------------