GithubHelp home page GithubHelp logo

unsplash-net's Introduction

Unsplash SDK for .Net

A simple and easy to use client for the Unsplash API


CI Release to Nuget CodeQL

Nuget Nuget (with prereleases)

Installation

.Net CLI

dotnet add package Unsplash.Net

Usage

Before using the Unsplash API, register as a developer and read the API Guidelines.

Import and initialize the client using the public authentication token created above.

var client = new UnsplashClient(new ClientOptions
{
    AccessKey = "<Token>"
});

Make A request to any Endpoint. For example you can call below to fetch the list of photos.

var photos = await client.Photos.GetPhotosAsync();

Contribution Guideline

At the moment I haven't got any specific guidelines for the project. Everyone are welcome to contribute.

unsplash-net's People

Contributors

koditkarvedant avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

leninparedes

unsplash-net's Issues

Add support for Users api

Add support for users API's - At start we only support public authenticated API's

  • Get a userā€™s public profile
  • Get a userā€™s portfolio link
  • List a userā€™s photos
  • List a userā€™s liked photos
  • List a userā€™s collections
  • Get a userā€™s statistics

Doc Ref: https://unsplash.com/documentation#users

Propose: Add Unsplash Management Client

Instead of instantiating Collections, Photos, Users client explicitly. It would be a useful if we can add a management client which will take care of instantiating these clients and allow use to call the api.

public class UnsplashClient
{
    public IPhotosApi Photos { get; }
    public ICollectionsApi Collections { get; }
    
    // etc
}

So user just have to create a instance of UnsplashClient and call the API's as below.

var client = new UnsplashClient(new ClientOptions());

var photos = await client.Photos.ListAsync();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.