Skip to main content

Posts

Inapp Purchase Server side validation for Android as well as IOS using Laravel

Hi friends,                 I'm very happy to share today experience In-app purchase server-side validation you. This link is very use full for me to implement this server side validation. Please refer this link, https://github.com/aporat/store-receipt-validator I have faced some problems with Android server side validation. I will share problematic experience with you.......... https://developers.google.com/android-publisher/authorization  -> go through this URL and flow this steps If you follow the steps, you will get a client id and client secret. While doing this process it will ask you for redirect URI, you just any of your project URL for testing purpose to get the token http://localhost/project/public/refresh-token I Just gave a refresh token function as return URL. In this function, $request->code you can retrieve the refresh token Using this token you can do this process  Exchange this code for an...

Simple way implement migration in your site (Using Laravel 5.3)

Hi Everyone, I want to share my migration experience (larvel 5.3) It’s to be good idea to implement in your site. If number of developers working in same script, no need of sharing your query changes to each to other. And also don’t worry about the table creation, fields changes in live server also. The single step will do this all the process for you. You just go to your folder path, hit the migrate command, it will do the all the changes will reflect in tables as well as field. 1 php artisan migrate JUST, WE WILL GO SHORT TOUR WITH MIGRATION HOW TO CREATE A TABLE USING MIGRATION: 1 php artisan make : migration create_users_table            If you want to create a table using migration, write a make migration command. php artisan make:migration is syntax and create users table is a migration file name. You can give the migration file name what ever you want, for over understanding, i have created...