Hawk support for react native.
This is a wrapper around https://github.com/tent/hawk-objc.
import Hawk from 'react-native-hawk';
Hawk.generateRequestHeader({
credentials: {
id : 'exqbZWtykFZIh2D7cXi9dA',
key : 'HX9QcbD-r3ItFEnRcAuOSg',
algorithm : 'sha256'
},
contentType : 'application/vnd.tent.post.v0+json',
method : 'POST',
requestUri : '/posts',
host : 'example.com',
port : 443,
payload : '{\"type\":\"https://tent.io/types/status/v0#\"}'
}, (header) => {
console.log('got header: ' + header);
});
This prints got header: Authorization: Hawk id="exqbZWtykFZIh2D7cXi9dA", mac="aBRih06F36eDFfyq06yNcItZZWFLsPKZOXQPnHm9I+c=", ts="0", nonce="D9AA709B-322D-4E44-AC01-F070317638C7", hash="neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU="
.
npm install --save react-native-hawk
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- add
./node_modules/react-native-hawk/RNHawk.xcodeproj
- In the XCode project navigator, select your project, select the
Build Phases
tab and in theLink Binary With Libraries
section add libRNHawk.a import Hawk from 'react-native-hawk';
in your code.