feat: Twitter API Core Integration with OAuth 2.0#606
Open
zp6 wants to merge 1 commit into
Open
Conversation
…nance#58) Implements complete Twitter API v2 core integration: - OAuth 2.0 PKCE authentication flow (authorize URL, code exchange, refresh, revoke) - Tweet management (create, delete, edit, quote, thread creation, get) - Media upload (simple and chunked, images/videos/GIFs, URL upload, alt text) - User management (get profile, followers, following, search, profile update) - Rate limit management (check, record, status, reset, wait_if_needed) - Token state management with ETS-backed storage - Integration beam orchestrating auth + upload + tweet + rate limiting Architecture: - 5 prisms under Lux.Prisms.Twitter.{Auth,Tweets,Media,Users} - 1 beam: Lux.Beams.Twitter.TwitterCoreIntegrationBeam - Integration client: Lux.Integrations.Twitter.Client - 2,800+ lines of idiomatic Elixir code Addresses: Spectral-Finance#58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the complete Twitter API Core Integration as specified in #58.
Features Implemented
OAuth 2.0 Authentication
Tweet Management
Media Upload
User Management
Rate Limit Management
Integration Client
Orchestration Beam
Architecture
Follows lux prism/beam patterns:
Closes #58