Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itswindows11/threadsharp
A C# API wrapper for the Threads API.
https://github.com/itswindows11/threadsharp
csharp dotnet facebook instagram meta threads-api threads-app
Last synced: 3 days ago
JSON representation
A C# API wrapper for the Threads API.
- Host: GitHub
- URL: https://github.com/itswindows11/threadsharp
- Owner: itsWindows11
- License: mit
- Created: 2024-09-25T14:12:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T07:31:34.000Z (28 days ago)
- Last Synced: 2024-10-19T18:38:39.210Z (27 days ago)
- Topics: csharp, dotnet, facebook, instagram, meta, threads-api, threads-app
- Language: C#
- Homepage: https://itswindows11.github.io/ThreadSharp/
- Size: 1.04 MB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
![ThreadSharp banner](https://github.com/itsWindows11/ThreadSharp/blob/main/assets/banner.png?raw=true)
A C# API wrapper for the Threads API.
> [!IMPORTANT]
> ThreadSharp is limited by the capabilities of the [Threads public API](https://developers.facebook.com/docs/threads/) and so not all features that you enjoy in the Threads app are available.## Documentation
You can browse the documentation at [itswindows11.github.io/ThreadSharp](https://itswindows11.github.io/ThreadSharp/docs/).
## Contributing
There are multiple ways to participate in the community:
- Upvote popular feature requests.
- [Submit a new feature](https://github.com/itsWindows11/ThreadSharp/pulls).
- [File bugs and feature requests](https://github.com/itsWindows11/ThreadSharp/issues/new/choose).
- Review [source code changes](https://github.com/itsWindows11/ThreadSharp/commits).## Usage
You can start by initializing a `ThreadsClient` with an access token:
```c#
ThreadsClient threadsClient = new ThreadsClient("access-token");
```> [!NOTE]
> ThreadSharp doesn't handle authentication manually, so you will have to handle the authentication depending on your platform's OAuth2 library.## Building the Code
### Prerequisites
Ensure you have following components:
- [Git](https://git-scm.com/).
- A .NET IDE of your choice, preferably [Visual Studio 2022](https://visualstudio.microsoft.com/vs/).
- [The .NET SDK](https://dotnet.microsoft.com/en-us/download/visual-studio-sdks).### Git
Clone the repository:
```bash
git clone https://github.com/itsWindows11/ThreadSharp
```### Build the project
- Open `ThreadSharp.sln`.
- Build `ThreadSharp.csproj` with `DEBUG` mode activated.## License
Copyright (c) 2024 itsWindows11 & ThreadSharp contributors.
Licensed under the [MIT license](LICENSE).