Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The APP_KEY has been changed to ANDROIDE13EC118BD7892FE7AB5A3F20 #108

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ Change iSolarCloud API token.
| --timeout | | GOSUNGROW_TIMEOUT | Web timeout. | 0s |
| --user | -u | GOSUNGROW_USER | SunGrow: api username. | ------------------ |
| --password | -p | GOSUNGROW_PASSWORD | SunGrow: api password. | --------------------------- |
| --appkey | | GOSUNGROW_APPKEY | SunGrow: api application key. | 93D72E60331ABDCDC7B39ADC2D1F32B3 |
| --appkey | | GOSUNGROW_APPKEY | SunGrow: api application key. | ANDROIDE13EC118BD7892FE7AB5A3F20 |
| | | | | * |
| --host | | GOSUNGROW_HOST | SunGrow: Provider API URL. | https://augateway.isolarcloud.com |
| | | | | * |
Expand Down
6 changes: 4 additions & 2 deletions iSolarCloud/WebAppService/getMqttConfigInfoByAppkey/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ const Disabled = false
const EndPointName = "WebAppService.getMqttConfigInfoByAppkey"

const (
AppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
//AppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
AppKey = "ANDROIDE13EC118BD7892FE7AB5A3F20"
WebAppKey = "B0455FBE7AA0328DB57B59AA729F05D8"
LoginAppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
//LoginAppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
LoginAppKey = "ANDROIDE13EC118BD7892FE7AB5A3F20"
)

type RequestData struct {
Expand Down
3 changes: 2 additions & 1 deletion iSolarCloud/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "time"
//goland:noinspection SpellCheckingInspection
const (
DefaultHost = "https://augateway.isolarcloud.com"
DefaultApiAppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
//DefaultApiAppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
DefaultApiAppKey = "ANDROIDE13EC118BD7892FE7AB5A3F20"
DefaultTimeout = time.Second * 30
)