Jump to content

Recommended Posts

Posted

Καλησπέρα!

Έχοντας ήδη ολοκληρώσει τo back-end για project που αφορά αυτοματικοποίημένες πληρωμές με χρήση κρυπτονομισμάτων, αναζητείτε συνεργάτης για να αναλάβει την ανάπτυξη και υποστήριξη ιστοσελίδας (web developer), ώστε να ολοκληρώθει η πρώτη φάση (project launch) του εγχειρήματος.

Η τρέχουσα ιστοσελίδα είναι https://fiskpay.net

Θα χαρώ να απαντήσω σε διευκρινήσεις!

Posted

επειδή έχω ασχοληθεί πολύ με τα IPN θα σου πρότεινα να ασχοληθείς περισσότερο με την πιστοποίηση και την ασφάλεια γιατί λείπουν πολλά απο τη PHP σύνδεση που κάνει ο συνδρομητής σου

μιλάω για αυτό: https://files.fiskpay.net/dependency/fiskpay-dependency.zip

<?php

/*
 * @package    fiskpay.ipn
 *
 * @copyright  (C) FiskPay https://fiskpay.net/
 * @license    GNU General Public License version 2 or later;
 */
 
//Add tor wallet address in the $wallet parameter. Example:
//
//$wallet = "0x1BedAb21aB78D16a4EDAf6eBbb746ccfEA5e7ad0";

$wallet = "0x1bedab21ab78d16a4edaf6ebbb746ccfea5e7ad0";

$data = json_decode(file_get_contents('php://input'), true);
if($data)
{
	$claimed = false;
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, 'https://api.fiskpay.net/claim/');
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(array('k' => $data['0'], 'w' => $wallet)));
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_POST, true);
	$json_data = curl_exec($ch);
	curl_close($ch);
	if($json_data)
	{
		$claim_data = json_decode(preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_data));
		if($claim_data != null && $claim_data -> claim)
		{
			$claimed = true;
		}
	}
	if($claimed)
	{
		//Variables feched from the post form during client payment
		$variable_1 = $data['1'];
		$variable_2 = $data['2'];
		$variable_3 = $data['3'];
		$variable_4 = $data['4'];
		$crypto_currency = $data['5'];
		$crypto_amount = $data['6'];
		$fiat_currency = $data['7'];
		$fiat_amount = $data['8'];
		$transaction_hash = $data['9'];
		$transaction_chain_id = $data['10'];
			
		/*--------------------------------------------------*/
		/*													*/
		/*													*/
		/*													*/
		/*             remove these commends and            */
		/*                add your code here!               */
		/*													*/
		/*													*/
		/*													*/
		/*--------------------------------------------------*/
	}
}

?>

επίσης καλό είναι να δώσεις και ένα sandbox με ελεύθερη χρήση και να στήσεις ένα github project για τον composer θα κερδίσεις πολύ γρηγορότερα κόσμο αν όλα γίνονται εύκολα και υπάρχει wiki για το Rest API με documentation για τους developers, επίσης θα ήταν καλό να μην σταθείς μόνο στην PHP αλλά να το δώσεις για περισσότερες γλώσσες.

Y.γ: https://app.fiskpay.net/ αυτό δεν φαίνεται πολύ καλά, γεμάτο nulls είναι

Posted (edited)

Καλησπέρα!

Ευχαριστώ για το χρόνο που αφιέρωσες, στο να απαντήσεις στο πόστ.

Η πιστοποίηση γίνετε ως εξής: έχω επιβεβαιώσει ότι έγινε μία πληρωμή μέσω blockchain και "κρατάω" την επιβεβαίωση σε μία βάση δεδομένων.

 

Απο τον σέρβερ (μου) στέλνω μία ειδοποίηση στον πελάτη και του ζητάω να μου στείλει κάποια στοιχεία τα οποία εξακριβώνονται στο blockchain και στη βάση. Αν όλα είναι οκ απαντάω στον πελάτη "προχώρα".

 

Όσο αφορά την τοποθέτησή σου, ότι λείπουν πολλά από την php σύνδεση, μπορείς να κάνεις κάποια επισήμανση;

Το sandbox υπάρχει ήδη αφού οι πληρωμές λειτουργούν και στο mainnet και στο testnet,

Τα null παρουσιάζονται επειδή δεν έχεις συνδεθεί στη σελίδα με κάποιο web3 πορτοφόλι ή/και είσαι σε λάθος Network (blockchain)

Οι περιγραφές στο πώς ακριβώς πιστοποιούνται οι συναλλαγές είναι σκοπήμως ανακριβής - κακές καθώς θα ήταν κάπως χαζό να περιγράψω ακριβώς πως λειτουργεί. Επίσης αν όντως περιέγραφα επακριβώς πως γίνετε η πιστοποίηση θα έπρεπε να γράψω "έκθεση".

Αν θέλεις μπορούμε να κουβεντίασουμε μέσω discord, στην περίπτωση που θα ήθελες να συμμετέχεις στην υλοποίηση του Project.

Και πάλι ευχαριστώ για το χρόνο σου

 

Edited by ScRaB4ever
Posted (edited)

https://dev.twitch.tv/docs/api/get-started

είναι το καλύτερο παράδειγμα που μπορώ να σου δώσω

Authorization Tokens
Client Id
Client secret

Η καλύτερη πιστοποίηση μέσω των κεφαλίδων (headers) χωρίς να φορτώνεις body (εξοικονόμηση πόρων) και δίνεις πρόσβαση σε συγκεκριμένους τομείς με json απαντήσεις αφού γίνει η πιστοποίηση, μετά από αυτό έρχεται η ζωή των tokens και η ανανέωσή τους.

 

και το documentation για τους developers ένα παράδειγμα: https://dev.twitch.tv/docs/api/reference#get-game-analytics

 

αυτά.

 

Edited by Nightw0lf
Posted

σε έκανα add. Η πιστοποιηση γίνετε με "τυχαια" sha256 hashes τα οποία δεν αντιστοιχούν σε κάποιον χρήστη αλλά σε συναλαγές που έχουν επαληθευτεί στο blockchain και έχουν αποθηκευτεί στον σερβερ. τα hashes ειναι διαφορετικά από αυτά του blockchain.

Πρακτικά διαβάζω ποιός πληρώνει ποιόν στο blockchain, πηγαίνω στο ipn αυτού που πληρώθηκε, του λέω (με api) "έχω πιστοποιήσει ότι αυτός σε πλήρωσε" οπότε το ipn ΄κάνει αυτό π είναι να κάνει.

 

Posted
2 hours ago, BabayG said:

Ρε αφήστε τα αυτά και πείτε μας, θα ανέβουν τα μπουρδελικια?🤪

βάλε και εσύ ένα χεράκι είδες κώδικα; ζόρικα τα πράγματα:pepe-cool:

Posted
3 hours ago, BabayG said:

Ρε αφήστε τα αυτά και πείτε μας, θα ανέβουν τα μπουρδελικια?🤪

κααααααααποια στιγμη θα ανεβουν:P

Posted (edited)
8 hours ago, Nightw0lf said:

βάλε και εσύ ένα χεράκι είδες κώδικα; ζόρικα τα πράγματα:pepe-cool:

Μόλις δω κώδικα λακίζω. Κλειν σε λίγο θα τα κάνουν όλα τα μποτάκια 

 

7 hours ago, ScRaB4ever said:

κααααααααποια στιγμη θα ανεβουν:P

Αμήν

Edited by BabayG
  • Haha 2
  • Vision locked this topic
Guest
This topic is now closed to further replies.
  • Posts

    • Yeah inside router i had to enable udnp services 
    • Hello cheaters, As a team of avid developers and enthusiasts of Lineage 2, we are excited to present the L2 Control Hub, a groundbreaking plugin designed by myself and my collaborator, StinkyMadness. This innovative tool equips server administrators with powerful automation capabilities directly within the game's community board. L2 Control Hub simplifies the creation and management of automations, enabling you to customize your server operations without the need to modify the source code.   Key Features of L2 Control Hub: Robust Automation Triggers: Select from a plethora of triggers currently available, with continuous additions in the works to enhance your control options. Dynamic Conditions and Actions: Tailor your server operations with an extensive range of conditions and actions, ensuring flexible and precise control over game events and player interactions. Customizable Variables: Easily integrate server-specific variables from your database to further personalize and streamline your automations. Utilize these variables across various automation scenarios to cater to your specific server requirements. JavaScript Integration: Execute custom JavaScript codes that interact seamlessly with Java classes, bringing advanced functionalities to your server's ecosystem.   Explore L2 Control Hub in Action: We've prepared a series of video tutorials to demonstrate the capabilities of L2 Control Hub: Control Hub - Create a Simple Flow with 1 Condition and 1 Action: Get started with basic automations. Control Hub - Multiple Conditions with Multiple Actions: Explore more complex automations for detailed server management. Control Hub - Using Variables: Discover how to implement and use custom variables for tailored automations. Control Hub - Using JavaScript: Experience the power of custom scripts in enhancing your server functionality.   L2 Control Hub is currently about 70% complete, and we are actively developing and refining features. We invite you to join our ➡️ Discord community ⬅️ to engage with the development process, provide feedback, and be the first to test new features. Additionally, any updates or changes to the plugin are seamlessly delivered to all customers directly from our web server, ensuring your system is always up-to-date without the need for manual downloads.   Your game, your rules, automated. Join us in redefining server management in Lineage 2 and elevate your gaming community with unmatched automation capabilities. For more details, contact us directly to get started with L2 Control Hub.   Currently, the plugin is developed using aCis sources. We will continue with these sources until we finalize all the necessary details before proceeding to integrate with the more prominent sources available.       The L2 Control Hub is designed to extend beyond mere functional additions to your server. We are in the process of implementing a suite of advanced mechanisms, such as a vote manager capable of interfacing with any Lineage 2 voting site without requiring configuration, live statistics to provide admins with real-time insights, and an event engine that can generate any desired event within seconds. All these features will be seamlessly integrated into the module, enhancing your server management experience significantly.     Please note that L2 Control Hub will be a premium tool, reflecting the extensive features and benefits it offers. While we are finalizing the pricing structure, rest assured that we aim to deliver great value for your investment. We will announce the cost details soon on our platforms to ensure everyone is well-informed and can plan accordingly. Join us to take your server management to the next level with L2 Control Hub.     
    • The link soucer and system are off, reup please, thanks very much @HypeH
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchihamkt.mysellix.io/ Join our server for more products : https://discord.gg/hood-services https://campsite.bio/utchihaamkt  
    • Hola, Busco proveedores de adena en Reborn signature. Trabajo serio, Web de ventas Seria. Adena-Shop. Discord: susi007317   Hello, I am looking for adena suppliers in Reborn signature. Serious work, Serious sales Web. Adena-Shop. Discord: susi007317
  • Topics

×
×
  • Create New...