Creating a URL Redirect in CloudFlare

Creating a URL Redirect in CloudFlare

Tiempo de lectura: < 1 minuto This is what we will learn to create a 301 redirect using Cloudflare today. The first thing we do is go to the control panel of Cloudflare and then click on the domain we want to configure. Next, we click on Rules. We can choose all of these: We can choose Redirect from root to … Read more

Implementing Request Tracking Transparency in iOS and AdMob Ad Permissions using React Native and Expo

Implementing Request Tracking Transparency in iOS and AdMob Ad Permissions using React Native and Expo

Tiempo de lectura: 2 minutos We will today learn to implement request tracking transparency using React Native and Expo. To do this, we will create the following utils file: // utils/AdsPermissions.ts (or similar) import { Platform } from ‘react-native’; import mobileAds, { AdsConsent } from ‘react-native-google-mobile-ads’; import { getTrackingPermissionsAsync, PermissionStatus, requestTrackingPermissionsAsync } from ‘expo-tracking-transparency’; export async function solicitartPermissionATT(): Promise<boolean> { … Read more

Adding In-App Subscriptions Using React Native on Android or iOS with react-native-iap

Adding In-App Subscriptions Using React Native on Android or iOS with react-native-iap

Tiempo de lectura: 2 minutos Today we’re going to learn how to add subscriptions to our application developed with React Native for Android or iOS. To make purchases in the app, we need to install the following library in our project: npm install react-native-iap Please install the current version: “react-native-iap”: “12.16.3”, Subscription purchase references for Android: https://developer.android.com/google/play/billing/rtdn-reference?hl=en Subscription Purchase References … Read more

Validating Purchases on Android App using Python

Tiempo de lectura: 2 minutos We will today learn how to validate in-app purchases using Python and an Android app. This will serve for native Android apps, ionic, kotlin, flutter, react native or any other technology you choose. The first thing to do is create a refresh token and OAuth 2.0 token data. To follow this tutorial, we will continue … Read more

How to get the Google Refresh Token step by step (OAuth 2.0)

How to get the Google Refresh Token step by step (OAuth 2.0)

Tiempo de lectura: 2 minutos We will today learn how to get a refresh token from Google OAuth 2.0 in order to use services of Google Console. We will first get the authentication data using a Google token. For this: client_id and client_secret You get them from the Test Users < p’It will tell you that Google hasn’t verified this … Read more