This document describes the Identity and Access Management (IAM) architecture for our suite of admin consoles (CMS, OMS, PIM, etc.). The architecture centralizes authentication and authorization through an API Gateway, allowing individual services to focus on business logic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| App& | |
| Content | |
| Stores | |
| pick store -> Categories | |
| Categories | |
| pick category -> Product List | |
| back to store list -> Stores | |
| Product List | |
| choose product -> Product | |
| back to categories -> Categories |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/ruby | |
| # Using GPL v2 | |
| # Author:: DongYuwei(mailto:newdongyuwei@gmail.com) | |
| # 更新部分内容应对2010年7月25日飞信升级 | |
| require 'uri' | |
| require 'net/http' | |
| require 'net/https' | |
| require "socket" | |
| require 'rexml/document' |