zubairehman/flutter_boilerplate_project

How to Add Dynamic AppKey and SecretKey at Interceptor

wahyukodar opened this issue · 1 comments

If there two endpoint type (public api and private api)

for public api is not required for appKey and secretKey
for private api it's required to include appKey, secretKey, custom Header param, and build signature param HASH_MAC

Thanks in advance.

Hi @wahyukodar,

You can check the request type and add your headers based on that. Please have a look at this file: https://github.com/zubairehman/flutter-boilerplate-project/blob/1df9b861504a04a4b748ec281eb28be4b82d6e98/lib/di/module/network_module.dart#L31

Thanks.