Skip to content

Commit 8efe1de

Browse files
committed
udating version for
1 parent 47dbb8a commit 8efe1de

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.4.11
2+
3+
- Application Management API v2023-11-30 [#88](https://github.com/patterninc/muffin_man/pull/88)
4+
15
# 2.4.10
26

37
- Sellers API v1 [#87](https://github.com/patterninc/muffin_man/pull/87)

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ As of now, this gem only supports portions of the following APIs with more to co
3838
- `Vendor Transaction Status API v1`
3939
- `Uploads API v2020-11-01`
4040
- `A+ API v2020-11-01`
41+
- `Application Management API v2023-11-30`
4142

4243
## Installation
4344

@@ -126,6 +127,12 @@ auth_code = resp['payload']['authorizationCode']
126127
refresh_token = MuffinMan::Lwa::AuthHelper.get_refresh_token(CLIENT_ID, CLIENT_SECRET, auth_code)
127128
```
128129

130+
### Retrieiving the access token
131+
To retrieve the access token, you can use the LWA helper:
132+
```ruby
133+
access_token = MuffinMan::Lwa::AuthHelper.get_access_token(scope, client_id, client_secret)
134+
```
135+
129136
### Debugging
130137

131138
To use Typheous' verbose mode set env variable `MUFFIN_MAN_DEBUG=true`

lib/muffin_man/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module MuffinMan
4-
VERSION = "2.4.10"
4+
VERSION = "2.4.11"
55
end

0 commit comments

Comments
 (0)