Skip to content

Repository files navigation

URI Template C++

This is a C++ implementation of RFC6570 - URI Template, and can expand templates up to and including Level 4 in that specification.

Usage

#include"uritemplate.hpp"using UriTemplate = uritemplatecpp::UriTemplate;
intmain(){
UriTemplate uri("{hello}");
uri.set("hello","world");
assert(uri.build() == "world");
return0;
}

License

Copyright (c) 2018 ReturnZer0

MIT License, see http://mit-license.org/

About

C++ implementation of URI Template

Topics

Resources

Stars

2 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages