Skip to content

Commit

Permalink
Merge pull request #204 from retoheusser/update-signature
Browse files Browse the repository at this point in the history
update signature for feed to work
  • Loading branch information
rvaidun authored Mar 21, 2024
2 parents e54e0ec + e6d017c commit 597d393
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const store = createStore({
return Promise.resolve(true);
}
},
async getFriendsOfFriends({ commit, state, dispatch }) { },
async getFriendsOfFriends({ commit, state, dispatch }) {},
async getPosts({ commit, state, dispatch }) {
return dispatch("refresh")
.then(() => {
Expand All @@ -145,10 +145,11 @@ const store = createStore({
"accept-language": "en-US,en;q=0.9",
authorization:
`Bearer ${localStorage.getItem("token")}` ?? "",
'bereal-app-version-code': '14549',
'bereal-signature': 'MToxNzA3NDgwMjI4OvR2hbFOdgnyAz1bfiCp68ul5sVZiHnv+NAZNySEcBfD',
'bereal-timezone': 'Europe/Paris',
'bereal-device-id': '937v3jb942b0h6u9'
"bereal-app-version-code": "14549",
"bereal-signature":
"MToxNzEwOTU0MTc2OmPlM3WPWqPWRq7EseRiT98fErcmwWg1yUatGmYZnzaH",
"bereal-timezone": "Europe/Paris",
"bereal-device-id": "937v3jb942b0h6u9",
},
}
)
Expand Down Expand Up @@ -178,10 +179,11 @@ const store = createStore({
"user-agent": "BeReal/7242 CFNetwork/1333.0.4 Darwin/21.5.0",
"accept-language": "en-US,en;q=0.9",
authorization: `Bearer ${localStorage.getItem("token")}` ?? "",
'bereal-app-version-code': '14549',
'bereal-signature': 'MToxNzA3NDgwMjI4OvR2hbFOdgnyAz1bfiCp68ul5sVZiHnv+NAZNySEcBfD',
'bereal-timezone': 'Europe/Paris',
'bereal-device-id': '937v3jb942b0h6u9'
"bereal-app-version-code": "14549",
"bereal-signature":
"MToxNzEwOTU0MTc2OmPlM3WPWqPWRq7EseRiT98fErcmwWg1yUatGmYZnzaH",
"bereal-timezone": "Europe/Paris",
"bereal-device-id": "937v3jb942b0h6u9",
},
})
.then((res) => {
Expand Down

0 comments on commit 597d393

Please sign in to comment.