Skip to content

Commit

Permalink
Update readme/changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Jul 24, 2024
1 parent d40853c commit f8e99e7
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Aps.Sample.App.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aps.Sample.App", "Aps.Sample.App\Aps.Sample.App.csproj", "{2B6F8F77-99F5-4EC2-9EF9-5E0404883F37}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Aps.Sample.App", "Aps.Sample.App\Aps.Sample.App.csproj", "{2B6F8F77-99F5-4EC2-9EF9-5E0404883F37}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{79FCC569-0A1D-43FB-ADE1-83A0EA8C08E5}"
ProjectSection(SolutionItems) = preProject
CHANGELOG.md = CHANGELOG.md
README.md = README.md
EndProjectSection
EndProject
Expand Down
1 change: 1 addition & 0 deletions Aps.Sample.App/Aps.Sample.App.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.0-beta</Version>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion Aps.Sample.App/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Aps.Sample.App
public partial class MainWindow : Window
{
private static string ClientId = "LtSI0DgPFsVmBLndZSsG8a2pb1unHNJu";
private static string CallbackUrl = "https://aps-single-page.glitch.me/";
private static string CallbackUrl = "http://localhost:8080/";

ApsService ApsService = new ApsService(ClientId, CallbackUrl);

Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.0.0] / 2023-07-17
## Features
* `APS` - Login / Logout
* `ThreeLeggedToken` - Save / Load local token.
* `WebViewLogin` - Receive the `Code` after login.
* `ApsService` with `ClientId`, `CallbackUrl` and `Scopes`.

[vNext]: ../../compare/1.0.0...HEAD
[1.0.0]: ../../compare/1.0.0
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ Desktop application to connect an Autodesk account using [Autodesk Platform Serv

![Aps.Sample.App](assets/Aps.Sample.App.gif)

## How to use

### Create an Aps Application

1. Go to [Autodesk Platform Service](https://aps.autodesk.com/).
2. Create an application with the type [Desktop, Mobile, Single-Page App](https://aps.autodesk.com/en/docs/oauth/v2/tutorials/create-app/).
3. Copy the `Client ID` and `Callback URL`.
4. Paste the `Client ID` and `Callback URL` in the [MainWindow.xaml.cs](Aps.Sample.App/MainWindow.xaml.cs) file.

## Video

Videos in English about this project.
Expand Down

0 comments on commit f8e99e7

Please sign in to comment.