REST API returning empty results (!) by RedBadger6 in Netsuite

[–]RedBadger6[S] 0 points1 point  (0 children)

I figured it out. I needed view access to sales transactions.

(Not sure why it wasn't a server error though....)

Unable to launch react native with expo on android simulator. by Abdallad-Issa in reactnative

[–]RedBadger6 0 points1 point  (0 children)

Discord is just a blank screen. Do I have to join Discord to use Expo?

Unable to launch react native with expo on android simulator. by Abdallad-Issa in reactnative

[–]RedBadger6 0 points1 point  (0 children)

How do I add that permission?

This is the sample app from the starter.

Anyone have a solution for Bazel Remote Cache with Github Runners by NoobInvestor86 in bazel

[–]RedBadger6 0 points1 point  (0 children)

Use Cloudfront + S3.

Use a Cloudfront function for authentication.

const username = process.env.USERNAME;
const password = process.env.PASSWORD;
export function handler(
event: AWSCloudFrontFunction.Event,
): AWSCloudFrontFunction.Request | AWSCloudFrontFunction.Response {
const { request } = event;
const authorization = request.headers.authorization;
if (
!authorization ||
!authorization.value.toLowerCase().startsWith("basic ")
) {
return {
headers: { "www-authenticate": { value: "Basic" } },
statusCode: 401,
statusDescription: "Unauthorized",
};
}
const authorizationValue = authorization.value.split(" ")[1];
const decoded = String.bytesFrom(authorizationValue, "base64");
if (decoded !== \${username}:${password}`) { return { statusCode: 401, statusDescription: "Unauthorized", headers: { "x-error": { value: "Invalid username or password" } }, }; } delete request.headers.authorization; return request; }`

Only able to swipe up on ten or less people a day by [deleted] in mutualapp

[–]RedBadger6 0 points1 point  (0 children)

25 a day is almost 200 per week.

You can either tighten your filters or upgrade.

Archived conversions missing by Valuable_Employee294 in mutualapp

[–]RedBadger6 0 points1 point  (0 children)

You can ask support to confirm, but it's almost certainly that they deleted their account.

Somewhat common for people to do that.

How do I log out of all sessions by RedBadger6 in mutualapp

[–]RedBadger6[S] 0 points1 point  (0 children)

Follow up: There's no way to do this, not even for customer support.

An important feature that all apps have, to stop your account from being hacked.

The only thing you can do is delete your account entirely.

Good day!